From cd20cf107e8cd763d1816554e2cdf189f683a1ae Mon Sep 17 00:00:00 2001 From: Caleb Schilly Date: Mon, 16 Sep 2024 10:42:45 -0400 Subject: [PATCH] #222: do not set long_description dynamically --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index af06c4d..3982856 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,8 @@ build-backend = "setuptools.build_meta" [project] name = "romtools" -dynamic = ["version", "long_description"] +dynamic = ["version"] +long_description = "file: README.md" long_description_content_type = "text/markdown" requires-python = ">=3.8" dependencies = [ @@ -22,7 +23,6 @@ dependencies = [ [tool.setuptools.dynamic] version = {file = "version.txt"} -long_description = {file = "README.md"} [tool.setuptools.packages.find] where = ["."]