-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
70 lines (65 loc) · 1.9 KB
/
pyproject.toml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
authors = [{ name = "seriaati", email = "[email protected]" }]
dependencies = [
"aiocache>=0.12.2",
"aiofiles>=24.1.0",
"asyncache>=0.3.1",
"asyncpg>=0.29.0",
"asyncpg-listen>=0.0.6",
"cachetools>=5.5.0",
"discord-py[speed]>=2.4.0",
"fake-useragent>=1.5.1",
"hakushin-py>=0.4.4",
"jishaku>=2.5.2",
"loguru>=0.7.2",
"novelai",
"orjson>=3.10.7",
"pillow>=10.4.0",
"psutil>=6.0.0",
"pydantic>=2.8.2",
"python-dotenv>=1.0.1",
"sentry-sdk>=2.13.0",
"seria-library[files]>=1.5.4",
"aerich>=0.7.2",
"uvloop>=0.20.0; platform_system == 'Linux'",
"flet[web]>=0.26.0",
"cryptography>=43.0.0",
"pandas>=2.2.2",
"fonttools>=4.53.1",
"tortoise-orm>=0.21.7",
"genshin[auth,sqlite]",
"toml>=0.10.2",
"enka>=2.4.3",
"ambr-py>=1.8.1",
"yatta-py>=1.3.11",
"akasha-py>=0.2.9",
]
description = "A feature-rich Discord bot for Hoyoverse gamers."
license = { file = "LICENSE" }
name = "hoyo-buddy"
readme = "README.md"
requires-python = ">=3.11"
version = "1.15.7"
[tool.uv]
dev-dependencies = ["icecream>=2.1.3"]
[tool.uv.sources]
novelai = { git = "https://github.com/seriaati/NovelAI-API" }
genshin = { git = "https://github.com/thesadru/genshin.py", branch = "master" }
hakushin-py = { git = "https://github.com/seriaati/hakushin-py" }
discord-py = { git = "https://github.com/Rapptz/discord.py" }
ambr-py = { git = "https://github.com/seriaati/ambr" }
enka = { git = "https://github.com/seriaati/enka-py" }
yatta-py = { git = "https://github.com/seriaati/yatta" }
[tool.pyright]
enableTypeIgnoreComments = false
reportIncompatibleMethodOverride = false
reportIncompatibleVariableOverride = false
reportUnnecessaryComparison = true
reportUnnecessaryContains = true
reportUnnecessaryIsInstance = true
reportUnnecessaryTypeIgnoreComment = true
typeCheckingMode = "standard"
[tool.aerich]
location = "./migrations"
src_folder = "./."
tortoise_orm = "hoyo_buddy.db.config.DB_CONFIG"