-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
32 lines (29 loc) · 951 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
31
32
from setuptools import setup
VERSION = "0.2.1"
REQUIRES = [
"paho-mqtt",
"pytz",
]
setup(
name="mochad_dispatch",
version=VERSION,
description="mochad_dispatch is a daemon written in Python that translates mochad's tcp-based events to MQTT messages",
url="https://github.com/ChrisArgyle/mochad_dispatch",
download_url="https://github.com/ChrisArgyle/mochad_dispatch/archive/{}.zip".format(
VERSION
),
author="Chris Przybycien",
author_email="[email protected]",
license="MIT",
packages=["mochad_dispatch"],
long_description=open("README.rst").read(),
zip_safe=False,
install_requires=REQUIRES,
test_suite="tests",
entry_points={"console_scripts": ["mochad_dispatch = mochad_dispatch.main:main"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.4",
],
)