-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
54 lines (48 loc) · 1.35 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
# from https://gist.github.com/dcreager/300803 with "-dirty" support added
from version import get_git_version
# From http://bugs.python.org/issue15881
try:
import multiprocessing
except ImportError:
pass
long_description = ''
with open('README.rst') as file:
long_description = file.read()
setup(
name='mqtt-watchdir',
version=get_git_version(),
author='Jan-Piet Mens',
author_email='[email protected]',
url="https://github.com/jpmens/mqtt-watchdir",
description='Recursively watch a directory for modifications and publish file content to an MQTT broker',
license='BSD License',
long_description=long_description,
keywords = [
"MQTT",
"files",
"notify"
],
scripts=[
"mqtt-watchdir.py"
],
data_files=[
"README.rst"
],
install_requires=[
'watchdog',
'paho-mqtt',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Communications',
'Topic :: Internet',
]
)