22 lines
530 B
TOML
22 lines
530 B
TOML
[project]
|
||
name = "app-control-bot"
|
||
version = "1.0.0"
|
||
description = "Веб-интерфейс для управления тестами Telegram бота"
|
||
readme = "README.md"
|
||
authors = [
|
||
{ name = "Bot Developer" }
|
||
]
|
||
requires-python = ">=3.12"
|
||
dependencies = []
|
||
|
||
[project.urls]
|
||
Repository = "https://github.com/yourusername/bot-telegram"
|
||
Issues = "https://github.com/yourusername/bot-telegram/issues"
|
||
|
||
[project.scripts]
|
||
app-control-bot = "main:main"
|
||
|
||
[build-system]
|
||
requires = ["hatchling"]
|
||
build-backend = "hatchling.build"
|