initial commit

This commit is contained in:
2025-03-18 20:32:17 +05:00
commit 15a5dad514
37 changed files with 19595 additions and 0 deletions

24
api/pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[project]
name = "api"
version = "0.1.0"
description = ""
authors = [
{name = "Vladislav",email = "vlad.dev@heado.ru"}
]
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"sqlalchemy[pymysql,aiomysql] (>=2.0.39,<3.0.0)",
"alembic (>=1.15.1,<2.0.0)",
"aio-pika (>=9.5.5,<10.0.0)",
"fastapi[standart] (>=0.115.11,<0.116.0)",
"uvicorn (>=0.34.0,<0.35.0)",
"loguru (>=0.7.3,<0.8.0)",
"pydantic-settings (>=2.8.1,<3.0.0)",
"cryptography (>=44.0.2,<45.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"