forked from XKNX/xknx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""Setup for XKNX python package."""
from setuptools import find_packages, setup
VERSION = '0.11.2'
REQUIRES = [
'pyyaml>=5.1',
'netifaces>=0.10.9'
]
setup(
name='xknx',
description='An Asynchronous Library for the KNX protocol. Documentation: http://xknx.io/',
version=VERSION,
download_url='https://github.com/XKNX/xknx/archive/{}.zip'.format(VERSION),
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 :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
packages=find_packages(),
install_requires=REQUIRES,
# python_requires=">=3.5.2",
keywords='knx ip knxip eib home automation',
zip_safe=False)