# =====================
# Python / Build
# =====================
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg-info/
.eggs/
build/
dist/
wheels/
pip-wheel-metadata/

# =====================
# Virtual Environments
# =====================
.venv/
venv/
env/
ENV/

# =====================
# Tooling
# =====================
.mypy_cache/
.pytest_cache/
.ruff_cache/
.coverage
coverage.xml
htmlcov/

# =====================
# Logs / Temp
# =====================
*.log
*.tmp
*.swp

# =====================
# Runtime Outputs
# =====================
workspace/
*.annotated.py
annotations.json
report.json

# =====================
# Web Demo (if present)
# =====================
node_modules/
dist-frontend/
.build/
.cache/

# =====================
# Secrets / Local Config
# =====================
.env
.env.*
config.local.toml
*untracked*

# =====================
# Editors / OS
# =====================
.vscode/
.idea/
.DS_Store
Thumbs.db


