-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (53 loc) · 1.54 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
55
56
57
58
59
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
requires = [
'docopt',
'requests',
'paho-mqtt',
]
test_requires = [
]
setup(name='mqttshot',
version='0.0.0',
description='mqttshot is a versatile little program for publishing and receiving images over MQTT',
long_description=README,
license="AGPL 3",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering",
],
author='Andreas Motl',
author_email='andreas@getkotori.org',
url='https://github.com/daq-tools/mqttshot',
keywords='mqtt image transfer',
packages=find_packages(),
include_package_data=True,
package_data={
},
zip_safe=False,
test_suite='nose.collector',
install_requires=requires,
tests_require=test_requires,
extras_require={
'test': test_requires,
},
entry_points={
'console_scripts': [
'mqttshot = mqttshot.command:run',
],
},
)