From 6bfcd8a348962f0357372f4e74c286f93e6eec26 Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 6 Dec 2017 13:52:53 +0100 Subject: setup.py: init --- setup.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..cfbb372 --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +from setuptools import setup + +import sys + +setup( + name='ampel', + version='0.2.3', + + description='uses the ampel', + long_description=open("README.md").read(), + license='WTFPL', + url='http://localhost/', + download_url='http://localhost/', + + author='makefu', + author_email='github.com@syntax-fehler.de', + + packages=['ampel'], + entry_points={ + 'console_scripts' : [ 'ampel = ampel.ampel:main' ], + }, + install_requires= [ + 'requests','docopt','influxdb', 'paho-mqtt','pytz' + ], + classifiers=[ + "Natural Language :: English", + "Operating System :: POSIX :: Linux", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: Implementation :: CPython", + ], +) + -- cgit v1.2.3