51 lines
1.0 KiB
TOML
51 lines
1.0 KiB
TOML
[project]
|
|
name = "healthbot"
|
|
version = "0.1.0"
|
|
description = "Bot for checking health of your services"
|
|
authors = [
|
|
{ name = "h", email = "h@kotikot.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"aiogram>=3.29.0",
|
|
"aiohttp>=3.10.0",
|
|
"aiosqlite>=0.20.0",
|
|
"pydantic-settings>=2.14.2",
|
|
"rich>=15.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.11.14,<0.12.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.uv.build-backend]
|
|
module-name = ["healthbot", "utils"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py313"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["ALL"]
|
|
ignore = ["CPY", "D1", "D203", "D212", "COM812", "BLE", "S101", "PT", "RUF001", "RUF002", "RUF003", "TRY301"]
|
|
unfixable = ["F401"]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"scripts/*" = ["INP", "T201", "ANN401"]
|
|
"*.lock" = ["ALL"]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.ruff.format]
|
|
docstring-code-format = true
|
|
skip-magic-trailing-comma = true
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.15.20",
|
|
"ty>=0.0.55",
|
|
]
|
|
|
|
[tool.ruff.lint.isort]
|
|
split-on-trailing-comma = false
|