-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (40 loc) · 1.35 KB
/
setup.py
File metadata and controls
46 lines (40 loc) · 1.35 KB
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
41
42
43
44
45
46
import setuptools
from red_star.rs_version import version
def get_requirements():
with open("requirements.txt", encoding="utf-8") as fd:
return fd.read()
def long_description():
with open("README.md", encoding="utf-8") as fd:
return fd.read()
setuptools.setup(
name='red_star',
version=version,
description='Red Star - A general-purpose Discord bot with bonus shouting.',
url='https://github.com/medeor413/Red_Star',
author="medeor413",
author_email="me@medeor.me",
long_description=long_description(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
package_data={'red_star': ['_default_files/*.json']},
license='MIT',
platforms='any',
python_requires="~=3.10",
install_requires=get_requirements(),
entry_points={
'console_scripts': ['red_star = red_star.__main__:main']
},
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Communications :: Chat"
]
)