2026-01-29 17:02:09 +08:00
|
|
|
[project]
|
|
|
|
|
name = "social-app"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Social application backend"
|
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
|
dependencies = [
|
2026-03-05 15:34:37 +08:00
|
|
|
"ag-ui-protocol>=0.1.13",
|
2026-02-05 15:13:06 +08:00
|
|
|
"alembic>=1.18.3",
|
|
|
|
|
"asyncpg>=0.31.0",
|
|
|
|
|
"email-validator>=2.3.0",
|
2026-01-29 17:02:09 +08:00
|
|
|
"fastapi>=0.128.0",
|
|
|
|
|
"pydantic>=2.11.0",
|
|
|
|
|
"pydantic-settings>=2.10.0",
|
2026-02-05 15:13:06 +08:00
|
|
|
"pyjwt>=2.10.1",
|
2026-03-02 10:55:46 +08:00
|
|
|
"pyyaml>=6.0.3",
|
2026-02-05 15:13:06 +08:00
|
|
|
"redis>=7.1.0",
|
|
|
|
|
"sqlalchemy[asyncio]>=2.0.46",
|
2026-01-29 17:02:09 +08:00
|
|
|
"structlog>=24.4.0",
|
2026-03-06 17:28:17 +08:00
|
|
|
"taskiq>=0.11.0",
|
|
|
|
|
"taskiq-redis>=1.0.0",
|
2026-01-29 17:02:09 +08:00
|
|
|
"supabase>=2.27.2",
|
|
|
|
|
"uvicorn[standard]>=0.40.0",
|
2026-03-08 17:34:28 +08:00
|
|
|
"dashscope>=1.25.13",
|
2026-03-11 15:28:29 +08:00
|
|
|
"agentscope>=1.0.16",
|
2026-03-20 14:06:37 +08:00
|
|
|
"apscheduler>=3.11.0",
|
2026-01-29 17:02:09 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"httpx>=0.28.0",
|
|
|
|
|
"playwright>=1.49.0",
|
|
|
|
|
"pytest>=8.3.0",
|
|
|
|
|
"pytest-asyncio>=0.24.0",
|
|
|
|
|
"pytest-cov>=5.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[tool.uv.index]]
|
|
|
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
|
|
|
|
default = true
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2026-02-05 15:13:06 +08:00
|
|
|
testpaths = ["backend/tests"]
|
2026-03-06 12:02:10 +08:00
|
|
|
addopts = "-q --import-mode=importlib"
|
2026-01-29 17:02:09 +08:00
|
|
|
asyncio_mode = "auto"
|
2026-03-05 15:34:37 +08:00
|
|
|
markers = [
|
|
|
|
|
"live: requires running local runtime and real external dependencies",
|
|
|
|
|
]
|
2026-01-29 17:02:09 +08:00
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
2026-02-05 15:13:06 +08:00
|
|
|
"aiosqlite>=0.22.1",
|
2026-03-17 12:18:09 +08:00
|
|
|
"basedpyright>=1.37.2",
|
|
|
|
|
"playwright>=1.57.0",
|
2026-01-29 17:02:09 +08:00
|
|
|
"pre-commit>=4.5.1",
|
2026-02-28 11:03:29 +08:00
|
|
|
"pytest>=9.0.2",
|
|
|
|
|
"pytest-asyncio>=1.3.0",
|
|
|
|
|
"pytest-cov>=7.0.0",
|
2026-01-29 17:02:09 +08:00
|
|
|
]
|