forked from jalmeroth/homie-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·30 lines (28 loc) · 827 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
29
30
#!/usr/bin/env python
"""Provide a setup routine."""
from setuptools import setup
version = "0.4.1"
setup(
name="homie",
packages=["homie"],
version=version,
description="Implementation of the Homie IoT convention",
author="Jan Almeroth",
author_email="homie-python@almeroth.com",
url="https://github.com/jalmeroth/homie-python",
download_url=(
"https://github.com/jalmeroth/homie-python/tarball/" +
version),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Home Automation"
],
install_requires=[
'paho-mqtt>=1.3.0',
'netifaces>=0.10.6'
]
)