-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 771 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 771 Bytes
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
from setuptools import setup
setup(
name='homieclient',
version='0.0.1',
package_dir={'': 'src'},
packages=['homieclient',],
license='MIT License',
author='Michel Wilson',
author_email='michel@crondor.net',
url='https://github.com/michelwilson/homieclient',
description='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.5.1'
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Home Automation"
]
)