Files
cool-domain/pyproject.toml
T
klemek d4b170d83f
Python Lint CI / ruff (push) Successful in 50s
Python Lint CI / ruff-format-check (push) Successful in 50s
Python Lint CI / ty (push) Successful in 50s
Python Test CI / coverage (push) Failing after 1m26s
chore: template usage
2026-06-15 10:13:15 +02:00

35 lines
701 B
TOML

[project]
name = "cool-domain"
version = "0.0.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
[project.scripts]
cool-domain = "cool_domain.__main__:main"
[build-system]
requires = ["uv_build>=0.11.7,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
module-name = "cool_domain"
[dependency-groups]
dev = [
"coverage>=7.13.5",
"pytest>=9.0.3",
"ruff>=0.15.10",
"ty>=0.0.29",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D", "E501", "ANN401", "BLE001", "COM812", "S101", "PT"]
[tool.coverage.run]
source = ["sample"] # TODO: 2. rename project
omit = ["sample/logs.py", "sample/__main__.py"]