pyproject toml formatting

This commit is contained in:
Daniel Fichtinger 2025-07-03 02:03:28 -04:00
parent 5ea472e014
commit c1e377c94d

View file

@ -4,7 +4,7 @@ version = "0.1.0"
description = "Static site generator"
readme = "README.md"
authors = [
{ name = "Daniel Fichtinger", email = "daniel@ficd.ca" }
{ name = "Daniel Fichtinger", email = "daniel@ficd.ca" },
]
requires-python = ">=3.12"
dependencies = [
@ -38,9 +38,7 @@ exclude = [
]
executionEnvironments = [
{ root = "src" },
{ root = "tests", extraPaths = [
"src",
], reportPrivateUsage = false },
{ root = "tests", extraPaths = ["src"], reportPrivateUsage = false },
]
# off | basic | standard | strict | recommended | all
typeCheckingMode = "recommended"
@ -68,7 +66,6 @@ quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = ["tests"]