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

# --- Distribution & Build ---
# These are created when you run 'pip install' or 'build'
build/
dist/
*.egg-info/
.eggs/
wheels/
MANIFEST

# --- Environments ---
.venv/
venv/
env/
.env

# --- Editor Specific ---
.vscode/
.idea/
.cursorignore
.DS_Store
Thumbs.db

# --- Testing & Quality ---
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
