123
Some checks failed
CI / Lint (ruff + mypy) (push) Failing after 34s
CI / Run tests (push) Has been skipped
CI / Docker build test (push) Successful in 13s

This commit is contained in:
2026-04-02 18:04:04 +07:00
commit 02afbd23ec
31 changed files with 2624 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "session-status-bot"
version = "0.1.0"
description = "Aiogram bot for updating channel session statuses"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiogram>=3.21.0,<4.0.0",
"python-dotenv>=1.0.1,<2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0,<9.0.0",
]
[tool.pytest.ini_options]
pythonpath = ["src"]