requirements.txt 302 B

12345678910111213141516171819
  1. # FastAPI核心依赖
  2. fastapi==0.104.1
  3. uvicorn[standard]==0.24.0
  4. python-multipart==0.0.6
  5. # 数据库相关
  6. sqlalchemy==2.0.23
  7. aiomysql==0.2.0
  8. # 认证和安全
  9. python-jose[cryptography]==3.3.0
  10. httpx==0.25.2
  11. # 配置管理
  12. pydantic==2.5.0
  13. pydantic-settings==2.1.0
  14. # 开发工具
  15. python-dotenv==1.0.0