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
|
|
|
|
2019-08-05 20:31:29 +00:00
|
|
|
# Include the README
|
|
|
|
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
|
2019-08-07 15:35:48 +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-02-16 01:30:00 +00:00
|
|
|
recursive-include docs/source/_static/images/ lightning_logo* pl_overview* tf_*
|
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
|
|
|
|
|
|
|
|
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*
|