Uploaded files

This commit is contained in:
Dani
2026-01-22 20:22:46 -05:00
parent b8e7d5c2b9
commit ee75a89f24
29 changed files with 418 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[project]
name = "app"
version = "0.1.0"
description = "GSD-native Python template"
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.6",
"pre-commit>=3.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = []
[tool.pytest.ini_options]
testpaths = ["tests"]