From f1b064115349b60470bd4082806c05e153e72037 Mon Sep 17 00:00:00 2001 From: newklei Date: Fri, 6 Mar 2026 14:41:46 -0500 Subject: [PATCH] fix: update setup.cfg to reference existing README.md and LICENSE - Replace non-existent README.rst with README.md as long_description source - Update long_description_content_type from text/x-rst to text/markdown - Fix license_files path from apache-2.0.LICENSE (missing) to LICENSE (actual file) Fixes #283 Signed-off-by: newklei --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 42ff897..5125fdf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,8 +5,8 @@ license = Apache-2.0 # description must be on ONE line https://github.com/pypa/setuptools/issues/1390 description = aboutcode -long_description = file:README.rst -long_description_content_type = text/x-rst +long_description = file:README.md +long_description_content_type = text/markdown url = https://github.com/aboutcode-org/aboutcode author = nexB. Inc. and others @@ -24,7 +24,7 @@ keywords = docs license_files = - apache-2.0.LICENSE + LICENSE NOTICE [options]