From 21899089a86fb9ca2bfac42622ac0c3777059c0b Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 28 Mar 2018 09:39:20 +0200 Subject: init default.py, setup.py --- setup.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0b6a0d4 --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +from setuptools import setup, find_packages +setup( + name='arafetch', + version='0.1', + description='fetch aramark data', + author='Felix Richter', + license='WTFPL', + author_email='github@syntax-fehler.de', + url='http://cgit.euer.krebsco.de/arafetch', + install_requires = [ + 'docopt', + 'requests', + 'beautifulsoup4', + 'influxdb' + ], + packages=find_packages(), + scripts = [ + "scripts/weekrun" + ], + entry_points = { + 'console_scripts': [ + 'arafetch=arafetch.arafetch:main', + 'ara2influx=arafetch.ara2influx:main' + ], + }, + + keywords=['api'], +) -- cgit v1.2.3