-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create MANIFEST.in * update MANIFEST.in * Add marker file for PEP 561 compliance * update setup.py: comment unused code * move pyproject.toml * update MANIFEST.in
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Declare all files and folders to include/exclude | ||
|
||
include README.md | ||
include src/pythae/py.typed # marker file for PEP 561 | ||
|
||
include LICENSE | ||
# Include all citation (*.cff) files | ||
include *.cff # citation info | ||
|
||
include MANIFEST.in | ||
include pyproject.toml | ||
include setup.py | ||
include setup.cfg | ||
|
||
# include requirements.txt | ||
|
||
recursive-exclude tests * | ||
recursive-exclude docs * | ||
recursive-exclude examples * | ||
|
||
recursive-exclude .github * | ||
recursive-exclude dist * | ||
|
||
exclude .gitignore | ||
exclude .readthedocs.yml | ||
exclude codecov.yml | ||
|
||
exclude CONTRIBUTING.md |
File renamed without changes.
Empty file.