32 lines
639 B
TOML
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"]
|