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

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

# ---- Packaging / build artifacts ----
build/
dist/
*.egg-info/
.eggs/

# ---- Test / tooling caches ----
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.pyright/
.ruff_cache/

# ---- IDE / editor ----
.vscode/
.idea/
*.iml

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

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

test_script.py