# Byte-compiled / optimized
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
build/
dist/
*.egg-info/
.eggs/

# Virtual environments
.venv/
venv/
env/
.venv_check/

# Testing / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.mypy_cache/
.ruff_cache/

# Docs build output
site/

# IDE
.vscode/
.idea/
*.iml

# OS
.DS_Store
Thumbs.db

# Environment
.env
.env.*

# Jupyter
.ipynb_checkpoints/

# Datasets (large / generated artifacts should not be committed by default)
datasets/generated/**/*.csv
datasets/generated/**/*.parquet
datasets/raw/**/*
!datasets/raw/**/README.md


# -------------------------------------------------------------------
# Internal engineering assets (local only)
# -------------------------------------------------------------------
prompts/

# Local Claude Desktop / AI working files
.claude/

# Temporary development artifacts
*.log
*.tmp
*.bak
*.orig

# Local SQLite databases
*.sqlite
*.sqlite3


# -------------------------------------------------------------------
# Python caches
# -------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class

# -------------------------------------------------------------------
# Build
# -------------------------------------------------------------------
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/

# -------------------------------------------------------------------
# Virtual environments
# -------------------------------------------------------------------
.venv/
venv/
env/

# -------------------------------------------------------------------
# Testing
# -------------------------------------------------------------------
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.mypy_cache/
.ruff_cache/

# -------------------------------------------------------------------
# Jupyter
# -------------------------------------------------------------------
.ipynb_checkpoints/

# -------------------------------------------------------------------
# Editors
# -------------------------------------------------------------------
.vscode/
.idea/

# -------------------------------------------------------------------
# OS
# -------------------------------------------------------------------
.DS_Store
Thumbs.db

# -------------------------------------------------------------------
# Logs
# -------------------------------------------------------------------
*.log

# -------------------------------------------------------------------
# Temporary files
# -------------------------------------------------------------------
*.tmp
*.bak
*.orig

# -------------------------------------------------------------------
# Local databases
# -------------------------------------------------------------------
*.sqlite
*.sqlite3

# -------------------------------------------------------------------
# Internal engineering assets
# -------------------------------------------------------------------
prompts/
.claude/

# -------------------------------------------------------------------
# Generated datasets
# -------------------------------------------------------------------
datasets/generated/**/*.csv
datasets/generated/**/*.parquet
datasets/raw/**/*
!datasets/raw/**/README.md