diff --git a/build.sh b/build.sh index 35b27b43d..c09de1008 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,5 @@ export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 python3 setup.py sdist -python3 setup.py bdist_wheel python3 setup.py egg_info diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 000000000..b88034e41 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index b651d736e..c24d0ff69 100644 --- a/setup.py +++ b/setup.py @@ -1,21 +1,26 @@ from setuptools import setup, find_packages -setup(name='xknx', - version='0.1', - description='A Wrapper around KNX/UDP protocol written in python.', - url='https://github.com/julius2342/xknx', - author='Julius Mittenzwei', - author_email='julius@mittenzwei.com', - license='MIT', - classifiers=[ - 'Development Status :: 3 - Alpha', - 'Intended Audience :: End Users/Desktop', - 'Intended Audience :: Developers', - 'Topic :: System :: Hardware :: Hardware Drivers', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5' +setup( + name='xknx', + description='A Wrapper around KNX protocol.', + + version='v0.3', + download_url='https://github.com/XKNX/xknx/tarball/v0.3', + url='http://xknx.io/', + + author='Julius Mittenzwei', + author_email='julius@mittenzwei.com', + license='MIT', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: End Users/Desktop', + 'Intended Audience :: Developers', + 'Topic :: System :: Hardware :: Hardware Drivers', + 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5' ], - packages=find_packages(), - keywords = 'knx ip automation', - zip_safe=False) + packages=find_packages(), + install_requires=['PyYAML'], + keywords = 'knx ip knxip home automation', + zip_safe=False)