40 lines
813 B
TOML
40 lines
813 B
TOML
[project]
|
|
name = "parser-tg-bot"
|
|
version = "0.1.0"
|
|
description = "Telegram channel monitoring service with Go API/classifier and Python Telethon adapter"
|
|
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",
|
|
"structlog>=24.4",
|
|
]
|
|
|
|
[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.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|