-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (37 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
39 lines (37 loc) · 1.01 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
[project]
name = "botw-bot"
version = "0.1.0"
description = ""
authors = [
{name = "Noah", email = "noah@dreckbu.de"}
]
requires-python = ">=3.9,<3.13"
dependencies = [
"alembic>=1.6.5",
"asyncpg>=0.29.0",
"click>=8.0.1",
"dateparser>=1.0.0",
"jishaku>=2.5.1",
"pendulum>=2.1.2",
"Pillow>=9.0.0",
"psycopg2-binary>=2.9.1",
"PyYAML>=6.0.0",
"seaborn>=0.11.1",
"gfypy>=1.2.4",
"peony-twitter==2.1.2",
"SQLAlchemy>=1.4.22,<2",
"pandas>=1.3.1",
"scipy>=1.7.3",
"discord-py>=2.3.2",
"discord-py @ git+https://github.com/Rapptz/discord.py.git@a00510988a204517f4777f1231407de3db726ae5",
"cachetools>=5.3.0",
"aioscheduler @ git+https://github.com/noahkw/aioscheduler",
"discord-ext-menus @ git+https://github.com/Rapptz/discord-ext-menus",
]
[tool.uv.sources]
aioscheduler = { git = "https://github.com/noahkw/aioscheduler" }
discord-ext-menus = { git = "https://github.com/Rapptz/discord-ext-menus" }
[dependency-groups]
dev = [
"pre-commit>=4.2.0",
]