From f46715f8ec7abed74b62622bae27674d9717ae17 Mon Sep 17 00:00:00 2001 From: Seth Cope Date: Thu, 11 Jun 2026 13:42:02 -0500 Subject: [PATCH] Ship readme.md/changelog.md in sdists (MANIFEST.in): setup.py reads readme.md, so sdists built from this tree could not be installed from source. Verified: with this change, python -m build (sdist -> wheel from that sdist) succeeds in a clean python:3.12 container; without it, it fails. Co-Authored-By: Claude Fable 5 --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..edbb0aa --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include readme.md +include changelog.md