pyproject.toml 725 B

12345678910111213141516171819202122232425
  1. [tool.poetry]
  2. name = "alien-py-cloud"
  3. version = "0.1.0"
  4. description = "Alien Cloud Python 重构版本 - 基于 FastAPI 的扁平化模块架构"
  5. authors = ["Alien Team"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "^3.12"
  9. fastapi = "^0.109.0"
  10. uvicorn = {extras = ["standard"], version = "^0.27.0"}
  11. pydantic = {extras = ["email"], version = "^2.6.0"}
  12. pydantic-settings = "^2.1.0"
  13. sqlalchemy = "^2.0.25"
  14. alembic = "^1.13.1"
  15. python-jose = {extras = ["cryptography"], version = "^3.3.0"}
  16. passlib = {extras = ["bcrypt"], version = "^1.7.4"}
  17. python-multipart = "^0.0.6"
  18. httpx = "^0.26.0"
  19. pymysql = "^1.1.0"
  20. redis = "^5.0.1"
  21. [build-system]
  22. requires = ["poetry-core>=1.0.0"]
  23. build-backend = "poetry.core.masonry.api"