-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (31 loc) · 942 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
33
34
from setuptools import setup
VERSION = '0.1.9'
REQUIRES = [
'daemonize',
'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'],
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',
],
)