prepare fastapi root layout for server deployment

This commit is contained in:
刘金宝
2026-06-04 10:55:23 +08:00
parent eb43573a44
commit b46e43aadc
103 changed files with 347 additions and 197 deletions
+21
View File
@@ -0,0 +1,21 @@
[project]
name = "medical-consultation-agent"
version = "0.1.0"
description = "Medical consultation agent first demo backend"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy>=2.0.0",
"pydantic>=2.7.0",
"pymysql>=1.1.0",
"aiomysql>=0.2.0",
"httpx>=0.27.0",
"python-dotenv>=1.0.0",
"reportlab>=4.2.0",
"redis>=5.0.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"