# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*.pyc
*.pyo
*.pyd
*$py.class

# C extensions
*.so
*.dylib

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
Pipfile.lock

# poetry
poetry.lock

# pdm
.pdm.lock
.pdm.toml

# PEP 582
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# IDEs
.vscode/
.idea/

# macOS
.DS_Store
.AppleDouble
.LSOverride

# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk

# Linux
*~
.fuse_hidden*
.directory
.Trash-*
.nfs*

# ==========================================
# Project-specific ignores
# ==========================================

# Data directories
data/
!data/.gitkeep
datasets/
raw_data/
# Allow tracked example sources (re-include after broad data ignore)
!examples/nova/src/data/
!examples/nova/src/data/**
!examples/nova/src/evaluation/
!examples/nova/src/evaluation/**
# But keep generated Python cache artifacts ignored inside those trees.
examples/nova/src/data/**/__pycache__/
examples/nova/src/data/**/*.py[cod]
examples/nova/src/evaluation/**/__pycache__/
examples/nova/src/evaluation/**/*.py[cod]

# Model checkpoints and weights
checkpoints/
*.pth
*.pt
*.pkl
*.h5
*.ckpt
*.safetensors

# Experiment outputs
runs/
outputs/
results/
experiments/
logs/
eval*/
!outputs/.gitkeep
!runs/.gitkeep
# Re-include NOVA example evaluation code
!examples/nova/src/evaluation/
!examples/nova/src/evaluation/**
# Keep generated cache artifacts ignored even inside re-included example code.
examples/nova/src/data/**/__pycache__/
examples/nova/src/data/**/*.py[cod]
examples/nova/src/evaluation/**/__pycache__/
examples/nova/src/evaluation/**/*.py[cod]

# Cache directories
cache/
.cache/
tmp/
temp/

# Index files
indexes/
indices/
*.index
*.faiss

# ML experiment tracking
wandb/
mlruns/
tensorboard_logs/

# Hydra
.hydra/
hydra_outputs/

# Configuration overrides
configs/local/
configs/personal/

# Large files and archives
*.zip
*.tar.gz
*.tar.bz2
*.rar
*.7z

# Images and videos (unless specifically needed)
*.jpg
*.jpeg
*.png
*.gif
*.bmp
*.tiff
*.svg

# Project banner/logo assets are tracked.
!docs/assets/*.png
!docs/assets/*.svg
*.mp4
*.avi
*.mov
*.wmv
*.flv
*.webm

# Audio files
*.mp3
*.wav
*.flac
*.aac

# Document files (unless part of documentation)
*.pdf
*.doc
*.docx
*.xls
*.xlsx
*.ppt
*.pptx

# Backup files
*.bak
*.backup
*.old
*.orig
*.save
*.swp
*.swo
*~

# API keys and secrets
.env.local
.env.production
.env.development
secrets.json
credentials.json
api_keys.txt

# Docker
docker-compose.override.yml
*.pid

# Notebooks with outputs
*-checkpoint.ipynb

# OS generated files
Icon?
._*

# Dataset caches & large autogenerated indexes
data/nova/**/*.lock
data/nova/**/dataset_info.json
data/nova/**/nova-*.arrow

# Temporary experiment files
scratch/
sandbox/
debug_*

# Agent session data
.claude/
.rules

# Browser automation artifacts
.playwright-mcp/

# Benchmark data
.benchmarks/

# Generated analysis outputs
coverage.json
pyright_output.txt
texput.log

# Paper project (research artifact, kept out of the public framework repo)
examples/aiih2026_paper/
