-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #395 from enzbang/manifest-in
Include all files in MANIFEST.in
- Loading branch information
Showing
2 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,9 +1,24 @@ | ||
# To verify the content, run ``check-manifest`` | ||
include *.md | ||
include mypy.ini | ||
include README.md CONTRIBUTING.md | ||
include tox.ini | ||
include VERSION COPYING3 | ||
recursive-include docs *.rst *.py | ||
include *.yaml | ||
include *.yml | ||
recursive-include docs *.bat | ||
recursive-include docs Makefile | ||
recursive-include docs *.py | ||
recursive-include docs *.rst | ||
recursive-include docs *.txt | ||
recursive-include docs *.yaml | ||
recursive-include tests *.anod | ||
recursive-include tests *.plan | ||
recursive-include tests *.py | ||
recursive-include tests *.rc | ||
recursive-include tests *.txt | ||
recursive-include tests *.yaml | ||
recursive-include tests *.zip | ||
recursive-include tools *.c | ||
recursive-include tools *.txt | ||
prune docs/_build | ||
exclude .gitreview |