chore: template

This commit is contained in:
2026-06-29 21:15:48 +02:00
parent 882bd2dbd1
commit e19a9cfdcc
10 changed files with 11 additions and 239 deletions
+5 -9
View File
@@ -1,13 +1,13 @@
[project]
name = "sample" # TODO: 2. rename project
name = "tout-doux"
version = "0.0.0"
description = "Add your description here"
description = ""
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
[project.scripts]
sample = "sample.__main__:main" # TODO: 2. rename project
tout-doux = "app.__main__:main"
[build-system]
requires = ["uv_build>=0.11.7,<0.12"]
@@ -26,18 +26,14 @@ add-bounds = "major"
[tool.uv.build-backend]
module-root = ""
module-name = "sample" # TODO: 2. rename project
module-name = "app"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D", "E501", "ANN401", "BLE001", "COM812", "S101", "PT"]
[tool.ty.src]
include = ["sample", "tests"] # TODO: 2. rename project
include = ["app", "tests"]
[tool.ty.environment]
python = "./.venv/bin/python3"
[tool.coverage.run]
source = ["sample"] # TODO: 2. rename project
omit = ["sample/logs.py", "sample/__main__.py"]