summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: eaf3da3a8afad3d5ad3e52a566753c06c9797401 (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
from setuptools import setup

setup(
    name="ebknotify",
    description="Notify on new ebay kleinanzeigen inputs",
    version="1.0.0",
    packages=["ebknotify"],
    license="MIT",
    long_description=open("README.md").read(),
    author="Felix Richter",
    author_email="github@krebsco.de",
    install_requires=[
        "requests",
        "docopt",
        "feedgen"
    ],
    entry_points={"console_scripts": [
        "ebk-notify = ebknotify.cli:main",
        "ebk-raw = ebknotify.raw:main"
    ]},
    classifiers=[
        "Intended Audience :: Human",
        "Natural Language :: English",
        "Operating System :: POSIX :: Linux",
        "Development Status :: 3 - Alpha",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: Implementation :: CPython",
    ],
)