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 61 62 63 64 65
|
# standard python ignores
*.py[co]
build
docs/build
dist
.pytest_cache/
# cartopy build files
lib/cartopy/trace.cpp
lib/cartopy/trace.so
lib/cartopy/trace.*.so
lib/cartopy/trace.pyd
lib/cartopy/_crs.c
lib/cartopy/_crs.so
lib/cartopy/_crs.*.so
lib/cartopy/_crs.pyd
lib/cartopy/geodesic/_geodesic.c
lib/cartopy/geodesic/_geodesic.so
lib/cartopy/geodesic/_geodesic.*.so
lib/cartopy/geodesic/_geodesic.pyd
docs/build
lib/cartopy/tests/mpl/output/
docs/source/cartopy/examples/
docs/source/cartopy_outline.rst
docs/source/gallery
docs/source/matplotlib/coastlines.p??
# 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/tests/.pep8_test_exclude.txt
lib/cartopy/siteconfig.py
cartopy_test_output
benchmarks/results/
benchmarks/envs/
# pydev files
.project
.pydevproject
# Created by editors
*~
\#*
\.\#*
*.swp
.ipynb_checkpoints/
.idea/
# Operating system files
\.DS_Store
.cache/
__pycache__/
# PyTest cache files
.pytest_cache
# Egg that gets created with 'pip install -v -e .'
*.egg-info/
.eggs/
|