22 lines
451 B
TOML
22 lines
451 B
TOML
|
|
[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"
|