From 3e32af2a737343d01b3e05fcb5c99925f5cac471 Mon Sep 17 00:00:00 2001 From: Luke Burden Date: Thu, 16 Jul 2026 23:31:25 -0700 Subject: [PATCH] Ship the full test suite in the sdist for distro packaging Setuptools' legacy default swept tests/test*.py into the sdist without the settings/urls/utils harness they need to run. Include the whole tests package and tox.ini so the sdist tests are runnable (issue #2). The wheel is unaffected. 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..3a4ce64 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include tests *.py +include tox.ini