Initial commit

This commit is contained in:
2026-06-15 08:11:11 +00:00
commit 093c553f6c
15 changed files with 758 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
[project]
name = "sample" # TODO: 2. rename project
version = "0.0.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
[project.scripts]
sample = "sample.__main__:main" # TODO: 2. rename project
[build-system]
requires = ["uv_build>=0.11.7,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
module-name = "sample" # TODO: 2. rename project
[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"]