19 lines
373 B
TOML
19 lines
373 B
TOML
[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"]
|