fix: issues

This commit is contained in:
Hazel 2024-06-07 12:22:34 +02:00
parent b302407d58
commit 752b403900
5 changed files with 6 additions and 6 deletions

View File

@ -1,2 +0,0 @@
__version__ = "0.0.0"
__name__ = "$REPO_DESCRIPTION_SNAKE"

View File

@ -0,0 +1,2 @@
__version__ = "0.0.0"
__name__ = "$REPO_NAME_SNAKE"

View File

@ -13,7 +13,7 @@ classifiers = [
]
[project.scripts]
$REPO_DESCRIPTION_KEBAB = "$REPO_DESCRIPTION_SNAKE.__main__:cli"
$REPO_NAME_KEBAB = "$REPO_NAME_SNAKE.__main__:cli"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
@ -23,13 +23,13 @@ build-backend = "hatchling.build"
directory = "dist"
[tool.hatch.build.targets.sdist]
include = ["$REPO_DESCRIPTION_SNAKE/*.py"]
include = ["$REPO_NAME_SNAKE/*.py"]
[tool.hatch.build.targets.wheel]
packages = ["$REPO_DESCRIPTION_SNAKE"]
packages = ["$REPO_NAME_SNAKE"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "$REPO_DESCRIPTION_SNAKE/__about__.py"
path = "$REPO_NAME_SNAKE/__about__.py"