Files
stapler/pyproject.toml
T
klemek 0b39313f7e
Python CI / ruff (push) Failing after 23s
Python CI / ruff-format-check (push) Failing after 25s
Docker CI / build (push) Failing after 40s
Python CI / ty (push) Failing after 22s
Python CI / coverage (push) Failing after 23s
chore: release 1.2.2
2026-04-27 15:24:59 +02:00

35 lines
695 B
TOML

[project]
name = "stapler"
version = "1.2.2"
description = "Static pages as simple as a gzip file"
requires-python = ">=3.14"
dependencies = [
"requests>=2.33.1",
]
[project.scripts]
stapler = "stapler.__main__:main"
[build-system]
requires = ["uv_build>=0.11.7,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
module-name = "stapler"
[dependency-groups]
dev = [
"coverage>=7.13.5",
"ruff>=0.15.10",
"ty>=0.0.29",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D", "E501", "S104", "PLR2004", "ANN401", "BLE001", "COM812", "S603", "PLR0911", "S101", "PT"]
[tool.coverage.run]
source = ["stapler"]
omit = ["stapler/logs.py", "stapler/__main__.py"]