Files
stapler/pyproject.toml
T
klemek 04360b42d8
Python Lint CI / ruff (push) Successful in 2m18s
Docker CI / docker-build (push) Successful in 3m2s
Python Lint CI / ruff-format-check (push) Successful in 1m31s
Python Lint CI / ty (push) Successful in 2m17s
Python Test CI / coverage (push) Successful in 2m5s
chore: release 1.3.1
2026-05-06 16:01:26 +02:00

37 lines
752 B
TOML

[project]
name = "stapler"
version = "1.3.1"
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",
"parameterized>=0.9.0",
"pytest>=9.0.3",
"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", "E722"]
[tool.coverage.run]
source = ["stapler"]
omit = ["stapler/logs.py", "stapler/__main__.py"]