summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 7d948a6b37259a84588b86905bb51918be90c323 (plain)
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
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',
            'ampel/vvs_efa',
        ],
    entry_points={
        'console_scripts' : [
            'ampel = ampel.ampel:main',
            'google-muell = ampel.google_muell:main'
            ],
    },
    install_requires= [
        'requests','docopt','influxdb', 'paho-mqtt','pytz',
        'httplib2','google-api-python-client'
        ],
    classifiers=[
        "Natural Language :: English",
        "Operating System :: POSIX :: Linux",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: Implementation :: CPython",
    ],
)