# ────────────────────────────────────────────────────────────────
#  Generic Python ignores
# ────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
.Python
env/
venv/
.venv/
.ipynb_checkpoints/

# ────────────────────────────────────────────────────────────────
#  Build / distribution
# ────────────────────────────────────────────────────────────────
dist/
build/
*.egg-info/
.eggs/
wheelhouse/
pip-wheel-metadata/

# ────────────────────────────────────────────────────────────────
#  Testing / coverage artefacts
# ────────────────────────────────────────────────────────────────
.pytest_cache/
.coverage
htmlcov/
.tox/

# ────────────────────────────────────────────────────────────────
#  Type checker & linter caches
# ────────────────────────────────────────────────────────────────
.mypy_cache/
.ruff_cache/
.dmypy.json
.pyre/

# ────────────────────────────────────────────────────────────────
#  Documentation build
# ────────────────────────────────────────────────────────────────
site/

# ────────────────────────────────────────────────────────────────
#  IDE / Editor artefacts
# ────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*~ 

# ────────────────────────────────────────────────────────────────
#  Secrets
# ────────────────────────────────────────────────────────────────
.env
*.pem
/temp
