2026-03-31 13:32:22 +08:00
|
|
|
[project]
|
|
|
|
|
name = "eryao"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "觅爻签问后端服务"
|
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
|
dependencies = [
|
2026-04-03 16:56:47 +08:00
|
|
|
"ag-ui-protocol==0.1.13",
|
|
|
|
|
"agentscope>=1.0.18",
|
2026-03-31 13:32:22 +08:00
|
|
|
"alembic==1.18.4",
|
2026-04-02 16:36:35 +08:00
|
|
|
"asyncpg==0.30.0",
|
2026-03-31 13:32:22 +08:00
|
|
|
"cryptography==46.0.3",
|
2026-04-03 16:56:47 +08:00
|
|
|
"dashscope>=1.25.15",
|
2026-03-31 13:32:22 +08:00
|
|
|
"email-validator==2.3.0",
|
|
|
|
|
"fastapi==0.135.1",
|
|
|
|
|
"pydantic==2.12.5",
|
|
|
|
|
"pydantic-settings==2.13.1",
|
|
|
|
|
"pyjwt==2.11.0",
|
2026-04-03 16:56:47 +08:00
|
|
|
"python-multipart>=0.0.22",
|
2026-03-31 13:32:22 +08:00
|
|
|
"pyyaml==6.0.3",
|
|
|
|
|
"redis==7.2.1",
|
|
|
|
|
"sqlalchemy[asyncio]==2.0.48",
|
|
|
|
|
"structlog==25.5.0",
|
2026-04-02 18:39:35 +08:00
|
|
|
"supabase==2.28.0",
|
2026-04-02 16:36:35 +08:00
|
|
|
"taskiq==0.12.1",
|
|
|
|
|
"taskiq-redis==1.2.2",
|
2026-03-31 13:32:22 +08:00
|
|
|
"uvicorn[standard]==0.41.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
2026-04-02 16:36:35 +08:00
|
|
|
"httpx==0.27.2",
|
2026-03-31 13:32:22 +08:00
|
|
|
"pytest==9.0.2",
|
|
|
|
|
"pytest-asyncio==1.3.0",
|
|
|
|
|
"pytest-cov==7.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[tool.uv.index]]
|
|
|
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
|
|
|
|
default = true
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["backend/tests"]
|
|
|
|
|
addopts = "-q --import-mode=importlib"
|
|
|
|
|
asyncio_mode = "auto"
|
2026-04-02 18:39:35 +08:00
|
|
|
pythonpath = ["backend/src"]
|
2026-03-31 13:32:22 +08:00
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
|
|
|
|
"basedpyright==1.38.2",
|
|
|
|
|
"pre-commit==4.5.1",
|
|
|
|
|
]
|