metrics/MANIFEST.in

50 строки
911 B
Plaintext
Исходник Постоянная ссылка Обычный вид История

2020-12-22 23:02:46 +03:00
# 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
2021-01-05 00:33:06 +03:00
recursive-include torchmetrics *.md
2020-12-22 23:02:46 +03:00
# Include the license file
include LICENSE
# Include marker file for PEP 561
include torchmetrics/py.typed
# Include examples
recursive-include tm_examples *.py
2020-12-22 23:02:46 +03:00
exclude *.sh
exclude *.toml
exclude *.svg
# exclude tests from package
recursive-exclude tests *
recursive-exclude site *
exclude tests
# Exclude the documentation files
recursive-exclude docs *
exclude docs
# Include the Requirements
include requirements.txt
recursive-include requirements *.txt
recursive-exclude requirements *.py
2020-12-22 23:02:46 +03:00
# Exclude build configs
exclude *.yml
exclude *.yaml
2021-02-22 13:25:41 +03:00
exclude Makefile
2020-12-22 23:02:46 +03:00
prune .git
prune .github
prune .circleci
prune notebook*
prune temp*
prune test*
prune benchmark*
prune integration*