forked from michelwilson/homieclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 811 Bytes
/
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
from setuptools import setup
setup(
name='homie-client-rx',
version='0.1.0',
package_dir={'': 'src'},
packages=['homieclientrx',],
license='MIT License',
author='Brice Copy',
url='https://github.com/cmcrobotics/homie-client-rx',
description='Reactive client to interact with Homie IoT devices via MQTT',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
python_requires='>=3.0',
platforms='any',
install_requires=[
'paho-mqtt==1.6.1',
'RxPy3==1.0.2'
],
tests_require=['pytest', 'callee'],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Home Automation"
]
)