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-include birl *.py
|
|
|
|
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 examples *.py
|
|
|
|
recursive-include pytorch_lightning *.py
|
|
|
|
|
|
|
|
# exclude tests from package
|
|
|
|
recursive-exclude tests *
|
|
|
|
exclude tests
|
|
|
|
|
|
|
|
# Exclude the documentation files
|
|
|
|
recursive-exclude docs *
|
|
|
|
exclude docs
|
|
|
|
|
|
|
|
# Include the Requirements
|
|
|
|
include requirements.txt
|
|
|
|
|
|
|
|
# Exclude build configs
|
|
|
|
exclude *.yml
|
|
|
|
|
|
|
|
prune .git
|
|
|
|
prune .github
|
|
|
|
prune notebook*
|
|
|
|
prune temp*
|
2019-08-07 15:35:48 +00:00
|
|
|
prune test*
|