finai/backend/pyproject.toml

27 lines
593 B
TOML

[project]
name = "finance-ai-qa-backend"
version = "0.1.0"
description = "FastAPI backend for finance AI intelligent Q&A customer service system."
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"sqlalchemy>=2.0",
"psycopg[binary]>=3.1.0",
"pydantic-settings>=2.0",
"python-jose[cryptography]>=3.3",
"passlib[bcrypt]>=1.7",
"python-multipart>=0.0.9",
"httpx>=0.27",
"tencentcloud-sdk-python-lke>=3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]