Files
krosh a830623fcd
Container / test (push) Canceled after 0s
Container / image (push) Canceled after 0s
ai did his job.
2026-08-08 03:53:10 +03:00

32 lines
639 B
TOML

[project]
name = "tg-favorite-stickers"
version = "0.1.0"
description = "Telegram bot for personal favorite sticker packs"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiogram>=3.22,<4",
]
[project.optional-dependencies]
test = [
"pytest>=8.4,<9",
"pytest-asyncio>=1.2,<2",
]
[project.scripts]
tg-favorite-stickers = "favorite_stickers.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/favorite_stickers"]
[tool.pytest.ini_options]
addopts = "-q"
asyncio_mode = "auto"
pythonpath = ["src"]
testpaths = ["tests"]