mirror of
https://github.com/olegvodyanov/docbot.git
synced 2025-12-19 23:57:05 +03:00
40 lines
949 B
TOML
40 lines
949 B
TOML
[project]
|
|
name = "docbot"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "oleg.vodyanov",email = "oleg.vodyanov91@gmail.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
|
|
[tool.poetry]
|
|
packages = [{include = "docbot", from = "src"}]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
python-telegram-bot = "22.1" # или aiogram v3
|
|
fastapi = "0.115.12"
|
|
uvicorn = {extras = ["standard"], version = "0.34.2"}
|
|
sqlalchemy = "2.0.41"
|
|
asyncpg = "0.30.0" # асинхронный драйвер для Postgres
|
|
alembic = "1.16.1"
|
|
pydantic = "2.11.5"
|
|
pydantic-settings = "2.9.1"
|
|
python-dotenv = "1.1.0"
|
|
greenlet = "3.2.2"
|
|
psycopg2-binary = "2.9.10"
|
|
alembic_utils = "0.8.8"
|
|
alembic-postgresql-enum = "1.7.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "8.2"
|
|
pytest-asyncio = "1.0.0"
|
|
flake8 = "7.2.0"
|
|
black = "25.1.0" |