# ─────────────────────────────────────
# Python
# ─────────────────────────────────────

# Virtual environment — never commit this
venv
venv/
env/

# Python compiled files — auto-generated by Python
__pycache__/
*.py[cod]       
*.pyo

# Build artifacts — generated when you run `pip install` or `python -m build`
dist/
build/
*.egg-info/
.eggs/

# ─────────────────────────────────────
# MLX — local experiment data
# ─────────────────────────────────────

# This is each user's private local data
# Everyone has their own .mlx/ folder on their own machine
.mlx/

# ─────────────────────────────────────
# Testing & Coverage
# ─────────────────────────────────────
.pytest_cache/
.coverage
htmlcov/
coverage.xml

# ─────────────────────────────────────
# IDE / Editor files
# ─────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo

# ─────────────────────────────────────
# OS generated files
# ─────────────────────────────────────

# Mac
.DS_Store
.AppleDouble

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini

# ─────────────────────────────────────
# Secrets — NEVER commit these
# ─────────────────────────────────────
.env
.env.local
*.pem
*.key
secrets.toml