from setuptools import setup setup( name="kalauerbot", description="Bot for managing the Kalauer König", version="1.0.0", packages=["kalauerbot"], license="MIT", long_description=open("README.md").read(), author="Felix Richter", author_email="github@krebsco.de", install_requires=[ "python-matrixbot", "googletrans", ], entry_points={"console_scripts": [ "kalauerbot = kalauerbot.bot: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", ], )