lightning/MANIFEST.in

78 lines
1.8 KiB
Plaintext
Raw Normal View History

2020-08-20 02:03:22 +00:00
# Copyright The PyTorch Lightning team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
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 *.svg
2019-08-05 20:31:29 +00:00
recursive-include pytorch_lightning *.py
# Include marker file for PEP 561
include pytorch_lightning/py.typed
# include examples
recursive-include pl_examples *.py *.md *.sh *.txt *.toml
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/logos/ *
recursive-include docs/source/_static/images/general/ pl_overview* tf_* tutorial_* PTL101_*
2019-08-05 20:31:29 +00:00
# Include the Requirements
recursive-include requirements *.txt
recursive-exclude requirements *.sh *.py
include requirements.txt
include pyproject.toml
2019-08-05 20:31:29 +00:00
# Exclude build configs
exclude *.yml
exclude *.yaml
2021-06-26 18:38:08 +00:00
exclude *.toml
exclude *.jsonnet
exclude .yapfignore
2019-08-05 20:31:29 +00:00
# Exclude pyright config
exclude .pyrightconfig.json
# Exclude submodules
exclude .gitmodules
exclude _notebooks
# Exclude Makefile
exclude Makefile
2019-08-05 20:31:29 +00:00
prune .git
prune .github
prune .circleci
2019-08-05 20:31:29 +00:00
prune temp*
2019-08-07 15:35:48 +00:00
prune test*
prune benchmark*
prune dockers
prune legacy