forked from elric91/ZiGate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 706 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name='pyzigate',
packages=['pyzigate'],
version='0.1.3.post1',
description='Interface library for ZiGate (http://zigate./fr)',
author='Frédéric HARS & Vesa YLIKYLÄ',
author_email='frederic.hars@gmail.com',
url='https://github.com/elric91/ZiGate',
download_url='https://github.com/elric91/ZiGate/archive/v0.1.3.tar.gz',
keywords=['zigate', 'zigbee', 'python3'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3',
)