# --- Reference / scratch material kept locally but never committed -----------
# This repo holds only the polished v2 package. Cross-reference material
# (legacy v1, HCIPy clone, the 15 historical variants, scraped test fixtures,
# experiments, working design/implementation notes) lives in the outer "lab"
# directory one level up, never inside this repo.

# Legacy-fixture capture scripts — dev-only tooling that imports legacy code
# from outside this repo. Once a digest is captured and committed under
# fixtures/runner/digests/, the capture script is no longer needed at runtime.
fixtures/runner/capture_*.py
fixtures/runner/run_legacy*.py

# Local mount point (symlink) for the legacy fixture material referenced by
# fixtures/configs/*.yaml — the material itself lives outside this repo.
test_fixtures

# Pickle files are not version-portable across HCIPy/Python releases
*.pkl

# --- Generated golden-output digests (commit these once captured) -------------
# Note: these ARE committed; this rule just excludes any raw tensor dumps
fixtures/runner/raw_tensors/

# --- Python build / install artifacts ----------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Setuptools-scm
src/telescope_sim/_version.py

# --- Virtual envs & tooling --------------------------------------------------
.venv/
venv/
env/
.python-version
.tox/
.nox/
.cache/
.mypy_cache/
.pytest_cache/
.ruff_cache/
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover

# --- Notebooks ---------------------------------------------------------------
.ipynb_checkpoints/

# --- Sphinx ------------------------------------------------------------------
docs/_build/
docs/api/_autosummary/
docs/tutorials/*.rst
docs/tutorials/*.png
!docs/tutorials/.gitkeep

# --- Editors / OS ------------------------------------------------------------
.DS_Store
.vscode/
.idea/
*.swp
*.swo

# --- Claude Code -------------------------------------------------------------
.claude/

# --- Misc --------------------------------------------------------------------
*.log
