48 lines
926 B
Plaintext
48 lines
926 B
Plaintext
# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
|
|
graft wheelhouse
|
|
|
|
recursive-exclude __pycache__ *.py[cod] *.orig
|
|
|
|
# Include the README and CHANGELOG
|
|
include *.md
|
|
|
|
# Include the license file
|
|
include LICENSE
|
|
|
|
exclude *.sh
|
|
exclude *.toml
|
|
exclude *.svg
|
|
recursive-include pytorch_lightning *.py
|
|
|
|
# include examples
|
|
recursive-include pl_examples *.py *.md *.sh *.txt
|
|
|
|
# exclude tests from package
|
|
recursive-exclude tests *
|
|
recursive-exclude site *
|
|
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_*
|
|
|
|
# Include the Requirements
|
|
include requirements.txt
|
|
include requirements-extra.txt
|
|
|
|
# Exclude build configs
|
|
exclude *.yml
|
|
exclude *.yaml
|
|
|
|
prune .git
|
|
prune .github
|
|
prune .circleci
|
|
prune notebook*
|
|
prune temp*
|
|
prune test*
|
|
prune benchmark*
|
|
prune docker
|
|
|