-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.08 KB
/
setup.py
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
#!/usr/bin/env python3
import setuptools
with open("README.md") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
install_requires = fh.read().splitlines()
setuptools.setup(
name="spacecat",
version="0.4.0",
description="A self hostable modular Discord bot.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.com/Mizarc/spacecat-discord-bot",
author="Mizarc",
author_email="mizarc@protonmail.com",
license="Apache License 2.0",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Communications :: Chat",
],
python_requires=">=3.12",
install_requires=install_requires,
)