From 505140378de33ff060af6747e59e7ef6cfbe592e Mon Sep 17 00:00:00 2001 From: Adrian Dombeck Date: Sat, 8 Nov 2025 11:06:29 +0100 Subject: [PATCH] Fix setup.py failing because of incorrect README name The README file was renamed from "README.rst" to "readme.md" in 368dedff9c03ea234962a789b5b60d5a0670cd22 but its usages were not all replaced, leading to FileNotFoundError: [Errno 2] No such file or directory: 'README.rst' when trying to `pip install` the module. --- MANIFEST.in | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index da3ecd8..59f1669 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,6 @@ include ChangeLog include LICENSE -include README.rst +include readme.md # added by check-manifest include *.yml diff --git a/setup.py b/setup.py index 66a9a12..c059757 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def find_version(file_paths): name="robotframework-debug", version=find_version("RobotDebug/version.py"), description="RobotFramework debug shell", - long_description=Path("README.rst").read_text(), + long_description=Path("readme.md").read_text(), long_description_content_type=("text/x-rst"), author="René Rohner", author_email="snooz@postoe.de",