From 4d4f1efbfd4a703a730d07833588ef172fb9a168 Mon Sep 17 00:00:00 2001 From: Tom Most Date: Sun, 7 Jul 2024 16:41:39 -0700 Subject: [PATCH] Fix up MANIFEST.in - Include _build_meta.py so that python -m build works. - Include all the test files in the sdist. Fixes #80. --- MANIFEST.in | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index dcb89166..c228f404 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,17 +1,20 @@ -include .coveragerc include LICENSE include NEWS.rst -include towncrier.ini +include SECURITY.md include tox.ini -exclude mypy.ini -include src/incremental/py.typed +include _build_meta.py recursive-include src/incremental *.py +include src/incremental/py.typed +prune src/incremental/newsfragments -prune .travis -prune tests +global-exclude .coverage* +include .coveragerc -exclude examplesetup.py -prune src/exampleproj +graft tests +prune tests/example_*/src/*.egg-info +prune tests/example_*/build +prune tests/example_*/dist + +global-exclude __pycache__ *.py[cod] *~ -prune src/incremental/newsfragments