Files
monitoring-tg/pyproject.toml
2026-06-04 14:55:41 +03:00

45 lines
929 B
TOML

[project]
name = "parser-tg-bot"
version = "0.1.0"
description = "Telegram channel parser — periodic polling + storage, future Go microservice"
requires-python = ">=3.11"
dependencies = [
"telethon>=1.36",
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"sqlalchemy[asyncio]>=2.0",
"asyncpg>=0.30",
"alembic>=1.14",
"apscheduler>=3.10",
"pydantic>=2.9",
"pydantic-settings>=2.6",
"python-dotenv>=1.0",
"structlog>=24.4",
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"ruff>=0.7",
"mypy>=1.13",
"pytest>=8.3",
"pytest-asyncio>=0.24",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"parser_bot.web" = ["static/*", "static/**/*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"