-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (53 loc) · 1.55 KB
/
Copy path.gitignore
File metadata and controls
64 lines (53 loc) · 1.55 KB
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
# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
*.egg
.eggs/
# Virtual environments
.venv/
venv/
env/
# Test / coverage
.pytest_cache/
.pytest-tmp/
.coverage
htmlcov/
# Type checking
.mypy_cache/
# IDE
.vscode/
.idea/
# OS
.DS_Store
Thumbs.db
# Local-only development notes (project conventions / per-session caches).
CLAUDE.md
.claude/
# Local-only upstream data — large and / or licensed for non-redistribution.
# pybmodes' tests + build scripts skip when these are absent (independence
# stance, see README). Contributors who want full cert-test or
# reference-deck-build coverage clone the upstream sources under external/.
# The MANIFEST.toml spec lives here and IS tracked — it pins the
# upstream-repo SHAs + file hashes the integration suite expects.
external/*
!external/MANIFEST.toml
# Generated case-study outputs — each cases/<name>/run.py regenerates
# its own outputs/ subtree (PNGs, coefficient tables, validation
# reports). Keeping them out of git avoids version churn on every
# rerun; reference_decks/ artifacts ARE tracked because they're
# deliverables, not regeneration artefacts.
cases/*/outputs/
scripts/outputs/
# Sphinx local build output (the published site is built by Read the
# Docs / the CI ``docs`` job; the local directory is regenerated by
# ``python -m sphinx ...`` on every build).
docs/_build/
# Release-workflow scratch files (regenerated per tag).
verify-v*.txt
release-notes-v*.md
# Patch-side backup files written by ``pybmodes patch --backup`` /
# ``pybmodes batch --patch --backup``. Local-only safety artefacts.
*.bak