40 lines
592 B
Plaintext
40 lines
592 B
Plaintext
# FastAPI和相关依赖
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
python-multipart==0.0.6
|
|
|
|
# 数据库相关
|
|
sqlalchemy[asyncio]==2.0.23
|
|
asyncpg==0.29.0
|
|
alembic==1.12.1
|
|
|
|
# 数据验证和序列化
|
|
pydantic==2.5.0
|
|
pydantic-settings==2.1.0
|
|
|
|
# HTTP客户端
|
|
httpx==0.25.2
|
|
aiohttp==3.9.1
|
|
|
|
# AI服务
|
|
google-generativeai==0.3.2
|
|
|
|
# 环境变量管理
|
|
python-dotenv==1.0.0
|
|
|
|
# 日志和监控
|
|
structlog==23.2.0
|
|
|
|
# 开发和测试依赖
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-cov==4.1.0
|
|
black==23.11.0
|
|
isort==5.12.0
|
|
flake8==6.1.0
|
|
|
|
# 类型检查
|
|
mypy==1.7.1
|
|
|
|
# 安全相关
|
|
cryptography==41.0.7 |