| 12345678910111213141516171819202122232425 |
- [tool.poetry]
- name = "alien-py-cloud"
- version = "0.1.0"
- description = "Alien Cloud Python 重构版本 - 基于 FastAPI 的扁平化模块架构"
- authors = ["Alien Team"]
- readme = "README.md"
- [tool.poetry.dependencies]
- python = "^3.12"
- fastapi = "^0.109.0"
- uvicorn = {extras = ["standard"], version = "^0.27.0"}
- pydantic = {extras = ["email"], version = "^2.6.0"}
- pydantic-settings = "^2.1.0"
- sqlalchemy = "^2.0.25"
- alembic = "^1.13.1"
- python-jose = {extras = ["cryptography"], version = "^3.3.0"}
- passlib = {extras = ["bcrypt"], version = "^1.7.4"}
- python-multipart = "^0.0.6"
- httpx = "^0.26.0"
- pymysql = "^1.1.0"
- redis = "^5.0.1"
- [build-system]
- requires = ["poetry-core>=1.0.0"]
- build-backend = "poetry.core.masonry.api"
|