lightning/MANIFEST.in

43 lines
827 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
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
# 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/_static/images/ lightning_logo* pl_overview* tf_*
2019-08-05 20:31:29 +00:00
# Include the Requirements
include requirements.txt
include requirements-extra.txt
2019-08-05 20:31:29 +00:00
# Exclude build configs
exclude *.yml
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*