36 lines
809 B
TOML
36 lines
809 B
TOML
[project]
|
|
name = "$REPO_NAME"
|
|
dependencies = []
|
|
dynamic = ["version"]
|
|
authors = []
|
|
description = "$REPO_DESCRIPTION"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.scripts]
|
|
$REPO_DESCRIPTION_KEBAB = "$REPO_DESCRIPTION_SNAKE.__main__:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling", "hatch-requirements-txt"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build]
|
|
directory = "dist"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["$REPO_DESCRIPTION_SNAKE/*.py"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["$REPO_DESCRIPTION_SNAKE"]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.version]
|
|
path = "$REPO_DESCRIPTION_SNAKE/__about__.py"
|