tg_bot/pyproject.toml

26 lines
468 B
TOML
Raw Normal View History

[tool.poetry]
name = "tg-bot"
version = "0.1.0"
description = ""
authors = ["pi3c <pi3c@yandex.ru>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
aiogram = "^3.3.0"
2024-02-15 04:17:33 +03:00
requests = "^2.31.0"
types-requests = "^2.31.0.20240125"
mypy = "^1.8.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
bot = "tg_bot.app:main"