23 lines
395 B
TOML
23 lines
395 B
TOML
|
[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"
|
||
|
|
||
|
|
||
|
[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"
|