diff options
| author | 2019-10-11 17:09:01 +0100 | |
|---|---|---|
| committer | 2019-10-11 17:09:01 +0100 | |
| commit | 449e690ad726e2a0ed7b8052377b44f57d56c20e (patch) | |
| tree | 5f36c17c78a3ac9103068361436d4a5fbe531934 | |
| parent | exit when all servers are disconnected after ctrl+c (diff) | |
| signature | ||
add setup.py
| -rw-r--r-- | setup.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..fe1e39b9 --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +import setuptools + +with open("README.md", "r") as readme_file: + long_description = readme_file.read() +with open("VERSION", "r") as version_file: + version = version_file.read().strip() + +setuptools.setup( + name="bitbot", + version=version, + scripts=["bitbotd", "bitbotctl"], + author="jesopo", + author_email="bitbot@jesopo.uk", + description="Modular event-driven IRC bot", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/jesopo/bitbot", + packages=setuptools.find_packages(), + classifiers=[ + "Environment :: Console", + "Environment :: No Input/Output (Daemon)", + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", + "Operating System :: POSIX", + "Topic :: Communications :: Chat :: Internet Relay Chat", + ], + python_requires='>=3.6', +) |
