Files
herolib/lib/lang/python/templates/pyproject.toml
2025-08-18 07:23:27 +02:00

23 lines
367 B
TOML

[project]
name = "@{name}"
version = "@{version}"
description = "@{description}"
requires-python = ">=@{python_version}"
dependencies = [
@{dependencies}
]
[project.scripts]
@{scripts}
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.uv]
dev-dependencies = [
@{dev_dependencies}
]