1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
*.py[oc]
*.so
build
dist
# Editor temporary/working/backup files
*$
.*.sw[nop]
.sw[nop]
*~
[#]*#
.#*
*.bak
*.tmp
*.tgz
*.rej
*.org
.project
*.diff
.settings/
*.svn/
# Egg metadata
*.egg-info
# The shelf plugin uses this dir
./.shelf
# Some IDEs add this directory
.idea
.vscode
# Mac droppings
.DS_Store
doc/documentation.zip
doc/generated
doc/CHANGES.rst
doc/README.rst
# Coverage report
.coverage
# pytest cache on failure
.cache
.pytest_cache
# Generated ctags
tags
# Generated by sphinx
doc/auto_examples/
doc/_build
# Dask worker space directory in generated examples
dask-worker-space/
# Binary files created by benchmarks
*.npy
|