2024-03-04 07:12:29 +03:00
|
|
|
[tool.poetry]
|
|
|
|
name = "service-man"
|
2024-04-01 01:12:01 +03:00
|
|
|
version = "0.0.1"
|
2024-03-04 07:12:29 +03:00
|
|
|
description = ""
|
|
|
|
authors = ["pi3c <pi3c@yandex.ru>"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
2024-04-02 22:33:15 +03:00
|
|
|
jose = "^1.0.0"
|
|
|
|
python-jose = "^3.3.0"
|
2024-03-04 07:12:29 +03:00
|
|
|
|
|
|
|
|
2024-04-01 01:12:01 +03:00
|
|
|
|
2024-03-04 07:12:29 +03:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pre-commit = "^3.6.2"
|
|
|
|
pytest = "^8.0.2"
|
|
|
|
mypy = "^1.8.0"
|
2024-03-06 02:28:59 +03:00
|
|
|
types-pyyaml = "^6.0.12.12"
|
2024-03-04 07:12:29 +03:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.api.dependencies]
|
|
|
|
fastapi = "^0.110.0"
|
|
|
|
sqlalchemy = "^2.0.27"
|
|
|
|
asyncpg = "^0.29.0"
|
|
|
|
uvicorn = "^0.27.1"
|
|
|
|
pyyaml = "^6.0.1"
|
|
|
|
alembic = "^1.13.1"
|
2024-04-01 01:12:01 +03:00
|
|
|
passlib = "^1.7.4"
|
2024-03-04 07:12:29 +03:00
|
|
|
|
|
|
|
[tool.poetry.group.bot.dependencies]
|
|
|
|
aiogram = "^3.4.1"
|
|
|
|
fastapi = "^0.110.0"
|
|
|
|
uvicorn = "^0.27.1"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|