Skip to content

Commit

Permalink
Preparation for pypi packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius2342 committed Jan 2, 2017
1 parent 3cde61f commit 40d4099
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 19 deletions.
1 change: 0 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -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

2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
41 changes: 23 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
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='[email protected]',
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)

0 comments on commit 40d4099

Please sign in to comment.