1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# Exclude specific files
# All files which are tracked by git and not explicitly excluded here are included by setuptools_scm
# Prune folders
prune build
prune docs/_build
prune docs/api
prune .circleci
prune .github
prune .jupyter
prune binder
prune mpl_animators/_dev
# Exclude a bunch of common hidden files, you probably want to add your own here
exclude .mailmap
exclude .gitignore
exclude .gitattributes
exclude .editorconfig
exclude .zenodo.json
exclude *.yml
exclude *.yaml
|