-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Include _build_meta.py so that python -m build works. - Include all the test files in the sdist. Fixes #80.
- Loading branch information
Showing
2 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Incremental's tests are now included in the sdist release artifact. |