-
Notifications
You must be signed in to change notification settings - Fork 116
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 #111 from sugatoray/update_packaging
Update packaging: add `MANIFEST.in` and `py.typed`
- Loading branch information
Showing
2 changed files
with
29 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,29 @@ | ||
include README.md | ||
include auto_ts/py.typed # marker file for PEP 561 | ||
|
||
include CHANGELOG.md | ||
include LICENSE | ||
include CITATION.cff | ||
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 site * | ||
recursive-exclude example_datasets * | ||
recursive-exclude example_notebooks * | ||
recursive-exclude .github * | ||
|
||
exclude .flake8 | ||
exclude .gitignore | ||
exclude .mypy.ini | ||
exclude .pre-commit-config.yaml | ||
exclude .pylintrc | ||
exclude Makefile | ||
exclude updates.md |
Empty file.