FastAPI 12. Интеграция Starlette Admin
All checks were successful
Lint project / lint (push) Successful in 21m11s

This commit is contained in:
2025-10-16 14:59:08 +04:00
parent c74c8bffff
commit 8e80b4ab99
13 changed files with 775 additions and 273 deletions

View File

@@ -6,23 +6,25 @@ authors = [
{ name = "proDream", email = "sushkoos@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.12,<4"
dependencies = [
"fastapi[standard] (>=0.115.6,<0.116.0)",
"uvicorn[standard] (>=0.34.0,<0.35.0)",
"pre-commit (>=4.0.1,<5.0.0)",
"sqlalchemy (>=2.0.37,<3.0.0)",
"fastapi[standard] (>=0.118.0,<0.120.0)",
"uvicorn[standard] (>=0.37.0,<0.40.0)",
"pre-commit (>=4.3.0,<5.0.0)",
"sqlalchemy (>=2.0.44,<3.0.0)",
"asyncpg (>=0.30.0,<0.31.0)",
"pydantic-settings (>=2.7.1,<3.0.0)",
"alembic (>=1.14.0,<2.0.0)",
"ruff (>=0.9.0,<0.10.0)",
"pydantic[email] (>=2.10.5,<3.0.0)",
"pydantic-settings (>=2.11.0,<3.0.0)",
"alembic (>=1.17.0,<2.0.0)",
"ruff (>=0.14.0,<0.20.0)",
"pydantic[email] (>=2.12.1,<3.0.0)",
"passlib (>=1.7.4,<2.0.0)",
"bcrypt (==4.0.1)",
"celery (>=5.4.0,<6.0.0)",
"redis (>=5.2.1,<6.0.0)",
"celery (>=5.5.3,<6.0.0)",
"redis (>=6.4.0,<7.0.0)",
"itsdangerous (>=2.2.0,<3.0.0)",
"pyjwt (>=2.10.1,<3.0.0)",
"poetry-core (>=2.2.1,<3.0.0)",
"starlette-admin (>=0.15.1,<0.16.0)",
]
[build-system]