From 34d01ba2f837ece31ce4b074b2c2e82635106766 Mon Sep 17 00:00:00 2001 From: Hazel Noack Date: Wed, 11 Jun 2025 10:50:56 +0200 Subject: [PATCH] fixed pyproject --- pyproject.toml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 467aece..a7b69d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,22 +1,28 @@ [project] name = "$REPO_NAME" dependencies = [] -dynamic = ["version"] +dynamic = [] authors = [] description = "$REPO_DESCRIPTION" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] +license-files = [ + "LICENSE" +] [project.scripts] $REPO_NAME_KEBAB = "$REPO_NAME_SNAKE.__main__:cli" +[project.urls] +Homepage = "$REPO_LINK" +Issues = "$REPO_LINKissues" + [build-system] -requires = ["hatchling", "hatch-requirements-txt"] +requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build] @@ -28,8 +34,5 @@ include = ["$REPO_NAME_SNAKE/*.py"] [tool.hatch.build.targets.wheel] packages = ["$REPO_NAME_SNAKE"] -[tool.hatch.metadata] -allow-direct-references = true - [tool.hatch.version] path = "$REPO_NAME_SNAKE/__about__.py"