lightning/MANIFEST.in

50 lines
970 B
Plaintext
Raw Normal View History

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
# 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
exclude *.svg
2019-08-05 20:31:29 +00:00
recursive-include pytorch_lightning *.py
# include examples
recursive-include pl_examples *.py *.md *.sh *.txt
2019-08-05 20:31:29 +00:00
# exclude tests from package
recursive-exclude tests *
recursive-exclude site *
2019-08-05 20:31:29 +00:00
exclude tests
# Exclude the documentation files
recursive-exclude docs *
exclude docs
recursive-include docs/source/_images/logos/ *
recursive-include docs/source/_images/general/ pl_overview* tf_* tutorial_* PTL101_*
2019-08-05 20:31:29 +00:00
# Include the Requirements
recursive-include requirements *.txt
2019-08-05 20:31:29 +00:00
# Exclude build configs
exclude *.yml
exclude *.yaml
2019-08-05 20:31:29 +00:00
# Exclude pyright config
exclude .pyrightconfig.json
2019-08-05 20:31:29 +00:00
prune .git
prune .github
prune .circleci
2019-08-05 20:31:29 +00:00
prune notebook*
prune temp*
2019-08-07 15:35:48 +00:00
prune test*
prune benchmark*
prune docker