41 строка
721 B
Plaintext
41 строка
721 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
|
|
recursive-include torchmetrics *.md
|
|
|
|
# Include the license file
|
|
include LICENSE
|
|
|
|
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-exclude requirements *.txt
|
|
|
|
# Exclude build configs
|
|
exclude *.yml
|
|
exclude Makefile
|
|
|
|
prune .git
|
|
prune .github
|
|
prune .circleci
|
|
prune notebook*
|
|
prune temp*
|
|
prune test*
|
|
prune benchmark*
|