mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-08-29 11:24:59 +08:00
* added file that contains information on the minimal versions needed for the supported loggers * copied minimal version, combined files, deleted duplicates * sorted functions in tests/test_loggers.py to be consistent * expanded wandb logging test; added minimal versions for requirements-extra.txt; increased the amount of training data that is used for tests * formatting * added requirements-extra.txt to MANIFEST.in * reverted wandb test; ensured minimal version for dependencies in requirements-extra.txt in ci-testing.yml
43 lines
827 B
Plaintext
43 lines
827 B
Plaintext
# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
|
|
graft wheelhouse
|
|
|
|
recursive-exclude __pycache__ *.py[cod] *.orig
|
|
|
|
# Include the README
|
|
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/_static/images/ lightning_logo* pl_overview* tf_*
|
|
|
|
# Include the Requirements
|
|
include requirements.txt
|
|
include requirements-extra.txt
|
|
|
|
# Exclude build configs
|
|
exclude *.yml
|
|
|
|
prune .git
|
|
prune .github
|
|
prune .circleci
|
|
prune notebook*
|
|
prune temp*
|
|
prune test*
|