From 2ce9aca681b85b3bb12e0964a1105a7bed7eb589 Mon Sep 17 00:00:00 2001 From: Jonas Jelten Date: Sun, 10 Mar 2024 21:18:06 +0100 Subject: [PATCH] fix flit error due to dynamic readme the error message otherwise says: ``` flit only supports dynamic metadata for 'version' & 'description' ``` --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ac6e258..5db63f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ { name = "Michael Enßlin", email = "mic@sft.lol" } ] license = { file = "LICENSE" } -dynamic = ["version", "readme"] +dynamic = ["version", "description"] classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python :: 3", @@ -67,7 +67,7 @@ exclude = ["tests*"] [tool.setuptools.dynamic] version = { attr = "abrechnung.__version__" } -readme = { file = ["README.md"] } +description = { file = ["README.md"] } [tool.pylint.MASTER] extension-pkg-whitelist = [