-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Robustify PyPi deployment (check manifest and distribution)
- Loading branch information
Showing
6 changed files
with
34 additions
and
7 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
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
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,4 +1,26 @@ | ||
include LICENSE | ||
include README.md | ||
include requirements.txt | ||
include requirements_test.txt | ||
include SIDNfonds.png | ||
include requirements*.txt | ||
exclude Makefile make.bat | ||
recursive-include src *.py | ||
|
||
# Include tests | ||
include tox.ini pytest.ini mypy.ini | ||
recursive-include tests *.py | ||
|
||
# Include examples | ||
recursive-include examples *.py | ||
recursive-include examples *.ipynb | ||
|
||
# Exclude visualisation data | ||
exclude src/visions/visualisation/summaries src/visions/visualisation/typesets | ||
recursive-exclude src/visions/visualisation/summaries * | ||
recursive-exclude src/visions/visualisation/typesets * | ||
recursive-exclude src/visions/visualisation *.html | ||
|
||
# Exclude directories | ||
exclude docs docsrc paper | ||
recursive-exclude docs * | ||
recursive-exclude docsrc * | ||
recursive-exclude paper * |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ pydot | |
pytest>=5.2.0 | ||
pytest-mypy | ||
pytest-black | ||
check-manifest>=0.41 |