From 7022d4219ca78de98452199453b6b638fc944a20 Mon Sep 17 00:00:00 2001 From: Jens Troeger Date: Fri, 10 Apr 2026 14:26:05 +1000 Subject: [PATCH] =?UTF-8?q?chore:=20set=20package=20description=20in=20the?= =?UTF-8?q?=20metadata=20instead=20of=20dynamically=20pulling=20it=20from?= =?UTF-8?q?=20the=20package=E2=80=99s=20main=20module=E2=80=99s=20doc=20st?= =?UTF-8?q?ring=20(which=20contains=20documentation,=20probably=20not=20a?= =?UTF-8?q?=20short=20package=20description)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5d408e1e..4998209a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,10 @@ name = "package" requires-python = ">=3.10.0,<3.14.0" authors = [{name = "Author", email = "author@email"}] maintainers = [{name = "Maintainer", email = "maintainer@email"}] -dynamic = ["version", "description"] +dynamic = ["version"] license = "MIT" # https://spdx.org/licenses/MIT.html license-files = ["LICENSE.md"] +description = "An opinionated Python package/application template repository, with SLSA and SBOM support built in, enabled for security scanners, code linters, typing, testing and code coverage monitoring, and release automation for reproducible builds." readme = "README.md" dependencies = [] keywords = []