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 54 55 56 57 58 59 60
|
# standard python ignores
*.py[co]
build
docs/build
dist
.pytest_cache/
# cartopy build files
lib/cartopy/_version.py
*.cpp
*.so
*.pyd
docs/build
lib/cartopy/tests/mpl/output/
docs/source/cartopy/examples/
docs/source/gallery
docs/source/matplotlib/coastlines.p??
docs/source/*/generated/
docs/source/sg_execution_times.rst
# some data files:
lib/cartopy/data/SRTM3
lib/cartopy/data/gshhs
lib/cartopy/data/shapefiles
# some configuration files which aren't part of cartopy repo
lib/cartopy/siteconfig.py
# Possible local downloads of these files during doc builds
ne_10m_bathymetry*
benchmarks/results/
benchmarks/envs/
# pydev files
.project
.pydevproject
# Created by editors
*~
\#*
\.\#*
*.swp
.ipynb_checkpoints/
.idea/
.vscode/
# Operating system files
\.DS_Store
.cache/
__pycache__/
# PyTest cache files
.pytest_cache
# Egg that gets created with 'pip install -v -e .'
*.egg-info/
.eggs/
|