-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3cde61f
commit 40d4099
Showing
3 changed files
with
25 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |