2016-07-09 11:32:16 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2016-07-09 11:55:10 +00:00
|
|
|
setup(name='pyHS100',
|
2018-09-06 14:52:11 +00:00
|
|
|
version='0.3.3',
|
2018-06-09 15:45:10 +00:00
|
|
|
description='Interface for TPLink HS1xx plugs, HS2xx wall switches & LB1xx bulbs',
|
2016-07-09 12:27:58 +00:00
|
|
|
url='https://github.com/GadgetReactor/pyHS100',
|
|
|
|
author='Sean Seah (GadgetReactor)',
|
|
|
|
author_email='sean@gadgetreactor.com',
|
2016-10-18 01:41:13 +00:00
|
|
|
license='GPLv3',
|
2016-07-09 12:27:58 +00:00
|
|
|
packages=['pyHS100'],
|
2017-09-18 16:13:06 +00:00
|
|
|
install_requires=['click', 'click-datetime', 'typing'],
|
2018-01-20 23:48:48 +00:00
|
|
|
python_requires='>=3.4',
|
2017-03-20 18:03:19 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'pyhs100=pyHS100.cli:cli',
|
|
|
|
],
|
|
|
|
},
|
2016-07-09 12:27:58 +00:00
|
|
|
zip_safe=False)
|