-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.06 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
[project]
name = "UsagiPass"
version = "0.1.0"
description = ""
authors = [
{name = "Usagi no Niku",email = "[email protected]"}
]
license = "GPL-3.0"
packages = [
{ include = "usagipass" }
]
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"fastapi (>=0.115.8,<0.116.0)",
"httpx (>=0.28.1,<0.29.0)",
"maimai-py (>=0.8.7,<0.9.0)",
"mitmproxy (>=11.1.3,<12.0.0)",
"pillow (>=11.1.0,<12.0.0)",
"sqlmodel (>=0.0.22,<0.0.23)",
"sqlalchemy (>=2.0.38,<3.0.0)",
"uvicorn (>=0.34.0,<0.35.0)",
"dotenv (>=0.9.9,<0.10.0)",
"alembic (>=1.14.1,<2.0.0)",
"pyjwt (>=2.10.1,<3.0.0)",
"tenacity (>=9.0.0,<10.0.0)",
"python-multipart (>=0.0.20,<0.0.21)",
"pymysql (>=1.1.1,<2.0.0)",
"tzdata (>=2025.1,<2026.0)"
]
[tool.poetry.scripts]
app = "usagipass.main:main"
mitm = "usagipass.main:mitm_main"
[[tool.poetry.source]]
name = "mirrors"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"