26 lines
417 B
TOML
26 lines
417 B
TOML
[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"]
|