Create authorization system

This commit is contained in:
2026-01-05 23:31:36 +03:00
parent d438f7bf5b
commit 2e14a7f364
39 changed files with 2500 additions and 9 deletions
Regular → Executable
+11 -1
View File
@@ -9,7 +9,17 @@ readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard] (>=0.124.4,<0.125.0)",
"sqlalchemy (>=2.0.45,<3.0.0)"
"sqlalchemy (>=2.0.45,<3.0.0)",
"pydantic-settings (>=2.12.0,<3.0.0)",
"alembic (>=1.17.2,<2.0.0)",
"colorlog (>=6.10.1,<7.0.0)",
"asyncpg (>=0.31.0,<0.32.0)",
"redis (>=7.1.0,<8.0.0)",
"passlib[bcrypt] (>=1.7.4,<2.0.0)",
"python-jose (>=3.5.0,<4.0.0)",
"celery (>=5.6.1,<6.0.0)",
"bcrypt (<4.1)",
"pytest (>=9.0.2,<10.0.0)"
]