forked from Teahouse-Studios/akari-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (85 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
89 lines (85 loc) · 2.4 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.pdm]
distribution = false
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.autopep8]
max_line_length = 120
in-place = true
recursive = true
aggressive = 3
[tool.pyright]
reportUndefinedVariable = "error"
[project]
name = "auth-bot"
version = "0.1.0"
description = ""
readme = "README.md"
license = {text = "AGPL-3.0"}
authors = [
{name = "cloudw233", email = "cloudw233@outlook.com"},
{name = "OasisAkari", email = "oasisakari@teahou.se"},
{name = "Dianliang233", email = "dianliang@teahou.se"},
{name = "DoroWolf", email = "dorowolf@tehou.se"},
{name = "nullcat", email = "null@teahou.se"},
{name = "_LittleC_", email = "i@ltlec.com"},
]
requires-python = "<4.0.0,>=3.12.0"
dependencies = [
"cryptography<46.0.0,>=45.0.0",
"pre-commit<5.0.0,>=4.0.0",
"pycryptodome<4.0.0,>=3.18.0",
"pywin32<309,>=308",
"aiocqhttp<2.0.0,>=1.4.3",
"aiogram<4.0.0,>=3.4.1",
"argon2-cffi<26.0.0,>=25.0.0",
"fastapi<1.0.0,>=0.115.0",
"ffmpy<1.0.0,>=0.5.0",
"flask<4.0.0,>=3.1.0",
"khl-py<1.0.0,>=0.3.16",
"matrix-nio<1.0.0,>=0.25.0",
"py-cord<3.0.0,>=2.5.0",
"pyjwt[crypto]<3.0.0,>=2.8.0",
"qq-botpy<2.0.0,>=1.2.1",
"slowapi<1.0.0,>=0.1.9",
"uvicorn[standard]<1.0.0,>=0.34.0",
"inputimeout<2.0.0,>=1.0.4",
"prompt-toolkit<4.0.0,>=3.0.47",
"cattrs<25.0.0,>=24.1.2",
"filetype<2.0.0,>=1.2.0",
"orjson<4.0.0,>=3.10.9",
"Pillow<12.0.0,>=11.0.0",
"tenacity<10.0.0,>=9.0.0",
"tomlkit<1.0.0,>=0.13.2",
"tortoise-orm[asyncmy]<1.0.0,>=0.25.0",
"aiofile<4.0.0,>=3.8.1",
"attrs<25.0.0,>=24.2.0",
"httpx<1.0.0,>=0.28.1",
"jinja2<4.0.0,>=3.1.6",
"loguru<1.0.0,>=0.7.0",
"ff3<2.0.0,>=1.0.2",
"psutil<8.0.0,>=7.0.0",
"tabulate<1.0.0,>=0.9.0",
"APScheduler<4.0.0.0,>=3.9.1-post.0",
"matplotlib<4.0.0,>=3.6.3",
"py-cpuinfo<10.0.0,>=9.0.0",
"beautifulsoup4<5.0.0,>=4.11.1",
"emoji<3.0.0,>=2.12.1",
"feedparser<7.0.0,>=6.0.10",
"gql<4.0.0,>=3.4.0",
"langconv @ git+https://github.com/OasisAkari/langconv.py.git",
"numpy<2.2.7",
"openai<2.0.0,>=1.6.1",
"pandas<3.0.0,>=2.2.0",
"pint<1.0.0,>=0.24.0",
"python-whois<1.0.0,>=0.9.0",
"rdkit<2026.0.0,>=2025.0.0",
"simpleeval<2.0.0,>=1.0.0",
"webcolors<25.0.0,>=24.0.0",
"wolframalpha<6.0.0,>=5.0.0",
]
[dependency-groups]
dev = [
"autopep8<3.0.0,>=2.0.2",
"pycodestyle==2.13.0",
]