-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (45 loc) · 912 Bytes
/
Copy path.gitignore
File metadata and controls
52 lines (45 loc) · 912 Bytes
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
*checkpoint*
*.pyc
*.nbc
*.nbi
*.nc
*.h5
*.pdf
*.png
*.json
!.zenodo.json
*.bat
*.log
*.egg-info
*.swp
*.bak
# Python build artifacts (sdist/wheel)
/dist/
/build/
/docs/build/*
/docs/source/_autosummary/
.VSCodeCounter/*
/notebooks/*
/preprint/*
/poster/*
*submission/*
manuscript/*
first_revision/*
outputs/*
local_archive/*
# Local configuration (never commit!)
pycsa/local_paths.py
setup_paths_local.sh
# Reproducibility fixtures (Phase B #2 / GH #31)
# Globally we ignore *.nc / *.png / *.pdf; carve out the canonical fixtures.
!tests/reproducibility/fixtures/**/*.nc
!tests/reproducibility/fixtures/**/*.png
!tests/reproducibility/fixtures/**/*.pdf
# Bundled example data (NetCDF tiles).
!examples/data/**/*.nc
!examples/data/**/*.nc4
# Documentation static assets (figures embedded in Sphinx pages).
!docs/source/_static/**/*.png
!docs/source/_static/**/*.pdf
!docs/source/_static/**/*.svg
_build/*