init commit

This commit is contained in:
2025-11-03 20:59:30 +03:00
commit e31d778ec4
14 changed files with 286 additions and 0 deletions

31
pyproject.toml Normal file
View File

@@ -0,0 +1,31 @@
[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",
]