python-project/pyproject.toml
2025-06-11 11:01:41 +02:00

39 lines
787 B
TOML

[project]
name = "$REPO_NAME"
dependencies = []
dynamic = []
authors = []
description = "$REPO_DESCRIPTION"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license-files = [
"LICENSE"
]
[project.scripts]
$REPO_NAME_KEBAB = "$REPO_NAME_SNAKE.__main__:cli"
[project.urls]
Homepage = "https://gitea.elara.ws$REPO_LINK"
Issues = "https://gitea.elara.ws$REPO_LINK/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
directory = "dist"
[tool.hatch.build.targets.sdist]
include = ["$REPO_NAME_SNAKE/*.py"]
[tool.hatch.build.targets.wheel]
packages = ["$REPO_NAME_SNAKE"]
[tool.hatch.version]
path = "$REPO_NAME_SNAKE/__about__.py"