2019-08-05 20:31:29 +00:00
|
|
|
# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
|
|
|
|
graft wheelhouse
|
2019-04-03 17:17:55 +00:00
|
|
|
|
2019-08-05 20:31:29 +00:00
|
|
|
recursive-exclude __pycache__ *.py[cod] *.orig
|
2019-04-03 17:17:55 +00:00
|
|
|
|
2020-04-07 13:49:38 +00:00
|
|
|
# Include the README and CHANGELOG
|
2019-08-05 20:31:29 +00:00
|
|
|
include *.md
|
2019-04-03 17:17:55 +00:00
|
|
|
|
2019-08-05 20:31:29 +00:00
|
|
|
# Include the license file
|
|
|
|
include LICENSE
|
|
|
|
|
|
|
|
exclude *.sh
|
|
|
|
exclude *.toml
|
2020-06-03 16:23:14 +00:00
|
|
|
exclude *.svg
|
2019-08-05 20:31:29 +00:00
|
|
|
recursive-include pytorch_lightning *.py
|
|
|
|
|
2019-09-08 22:17:33 +00:00
|
|
|
# include examples
|
2020-02-11 03:47:18 +00:00
|
|
|
recursive-include pl_examples *.py *.md *.sh *.txt
|
2019-09-08 22:17:33 +00:00
|
|
|
|
2019-08-05 20:31:29 +00:00
|
|
|
# exclude tests from package
|
|
|
|
recursive-exclude tests *
|
2019-09-08 22:17:33 +00:00
|
|
|
recursive-exclude site *
|
2019-08-05 20:31:29 +00:00
|
|
|
exclude tests
|
|
|
|
|
|
|
|
# Exclude the documentation files
|
|
|
|
recursive-exclude docs *
|
|
|
|
exclude docs
|
2020-03-24 18:50:35 +00:00
|
|
|
recursive-include docs/source/_images/logos/ *
|
2020-05-15 12:36:40 +00:00
|
|
|
recursive-include docs/source/_images/general/ pl_overview* tf_* tutorial_*
|
2019-08-05 20:31:29 +00:00
|
|
|
|
|
|
|
# Include the Requirements
|
|
|
|
include requirements.txt
|
2020-02-21 18:30:27 +00:00
|
|
|
include requirements-extra.txt
|
2019-08-05 20:31:29 +00:00
|
|
|
|
|
|
|
# Exclude build configs
|
|
|
|
exclude *.yml
|
2020-06-03 16:23:14 +00:00
|
|
|
exclude *.yaml
|
2019-08-05 20:31:29 +00:00
|
|
|
|
|
|
|
prune .git
|
|
|
|
prune .github
|
2019-11-13 11:03:13 +00:00
|
|
|
prune .circleci
|
2019-08-05 20:31:29 +00:00
|
|
|
prune notebook*
|
|
|
|
prune temp*
|
2019-08-07 15:35:48 +00:00
|
|
|
prune test*
|
2020-04-07 18:04:32 +00:00
|
|
|
prune benchmark*
|
2020-04-25 18:17:09 +00:00
|
|
|
prune docker
|
|
|
|
|