Files
logging_telegram_handler/pyproject.toml
2025-11-03 20:59:30 +03:00

31 lines
710 B
TOML

[build-system]
requires = ["setuptools>=75.3.0"]
build-backend = "setuptools.build_meta"
[project]
name = "LoggingTelegramHandler"
description = "Send messages in telegram chat"
version = "1.0.0"
authors = [
{ name = "Aleksei Zosimov", email = "lesha.spb@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"requests"
]
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Homepage = "https://git.lesha.spb.ru/alex/logging_telegram_handler"
Documentation = "https://git.lesha.spb.ru/alex/logging_telegram_handler"
Repository = "https://git.lesha.spb.ru/alex/logging_telegram_handler.git"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]