tg_bot/pyproject.toml

28 lines
510 B
TOML
Raw Permalink 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"
2024-02-21 01:45:59 +03:00
pyquizapi = "^0.0.14"
2024-02-23 03:51:00 +03:00
networkx = "^3.2.1"
[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"