25 lines
611 B
TOML
25 lines
611 B
TOML
[project]
|
|
name = "api"
|
|
version = "0.0.1"
|
|
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"
|