-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
52 lines (48 loc) · 1.59 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import setuptools
def readme():
with open("README.md", "r") as f:
return f.read()
setuptools.setup(
name="sciolyid",
version="2.0.2",
description="Create ID Discord bots for SciOly studying.",
long_description=readme(),
long_description_content_type="text/markdown",
keywords="science_olympiad discord_bot discord studying",
license="GPLv3+",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
url="https://github.com/tctree333/SciOly-ID",
author="Tomi Chen",
author_email="pypi@tomichen.com",
packages=setuptools.find_packages(),
install_requires=[
"discord.py>=2.3.1, <3.0.0",
"redis>=3.3.5, <5.0.0",
"sentry-sdk>=1.1.0, <2.0.0",
"Pillow>=9.0.1, <11.0.0",
"wikipedia>=1.4.0, <2.0.0",
"gitpython>=3.0.6, <4.0.0",
"hiredis>=1.0.1, <3.0.0",
"pandas>=1.3.0, <3.0.0",
"filelock>=3.4.2, <3.7.0",
],
extras_require={
"web": [
"Flask>=1.1.2, <2.1.0",
"Authlib>=0.15.5, <1.0.0",
"gunicorn>=20.0.4, <21.0.0",
"ImageHash>=4.0.0, <5.0.0",
"Celery>=4.4.3, <5.0.0",
"blinker>=1.4, <1.5",
]
},
py_modules=["config", "core", "data", "functions", "downloads", "start_bot"],
python_requires=">=3.8",
)