22 lines
472 B
TOML
22 lines
472 B
TOML
[tool.poetry]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Mootfrost777 <andrey13102007@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.88.0"
|
|
sqlalchemy = {extras = ["asyncio"], version = "^1.4.45"}
|
|
alembic = "^1.9.1"
|
|
asyncpg = "^0.27.0"
|
|
logging = "^0.4.9.6"
|
|
uvicorn = "^0.20.0"
|
|
pydantic = "^1.10.4"
|
|
python-dotenv = "^0.21.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|