# Virtual Environment
.venv/

# Python bytecode / cache
__pycache__/
*.pyc
*.pyo

# Build artifacts (created by `uv build`)
dist/
build/
*.egg-info/

# Jupyter
.ipynb_checkpoints/

# pytest / coverage
.pytest_cache/
.coverage
htmlcov/

# mypy
.mypy_cache/

# ruff
.ruff_cache/

# Environment variables (if you ever add a .env for local secrets/tokens)
.env

# OS-specific
.DS_Store
Thumbs.db

# Editor-specific
.vscode/
.idea/