45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
|
from setuptools import setup, find_packages
|
||
|
import os
|
||
|
|
||
|
version = '0.1'
|
||
|
|
||
|
long_description = (
|
||
|
open('README.txt').read()
|
||
|
+ '\n' +
|
||
|
'Contributors\n'
|
||
|
'============\n'
|
||
|
+ '\n' +
|
||
|
open('CONTRIBUTORS.txt').read()
|
||
|
+ '\n' +
|
||
|
open('CHANGES.txt').read()
|
||
|
+ '\n')
|
||
|
|
||
|
setup(name='hs.admin.play',
|
||
|
version=version,
|
||
|
description="Hostsharing HSAdmin Play",
|
||
|
long_description=long_description,
|
||
|
# Get more strings from
|
||
|
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python",
|
||
|
],
|
||
|
keywords='Hostsharing HSAdmin Play',
|
||
|
author='Hostsharing eG',
|
||
|
author_email='info@hostsharing.net',
|
||
|
url='https://www.hostsharing.net',
|
||
|
license='lgpl',
|
||
|
packages=find_packages('src'),
|
||
|
package_dir = {'': 'src'},
|
||
|
namespace_packages=['hs', 'hs.admin'],
|
||
|
include_package_data=True,
|
||
|
zip_safe=False,
|
||
|
install_requires=[
|
||
|
'setuptools',
|
||
|
'hs.admin.api',
|
||
|
# -*- Extra requirements: -*-
|
||
|
],
|
||
|
entry_points="""
|
||
|
# -*- Entry points: -*-
|
||
|
""",
|
||
|
)
|