Skip to content

Commit

Permalink
Fix up MANIFEST.in
Browse files Browse the repository at this point in the history
- Include _build_meta.py so that python -m build works.
- Include all the test files in the sdist. Fixes #80.
  • Loading branch information
twm committed Jul 7, 2024
1 parent 62c86b4 commit 4d4f1ef
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4d4f1ef

Please sign in to comment.