# ─── Python ───
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
*.whl
*.tar.gz
sdist/
wheels/
*.dist-info/

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

# ─── Testing ───
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
*.lcov
results.xml

# ─── IDE ───
.vscode/
.idea/
*.swp
*.swo
*~
.project
.settings/

# ─── OS ───
.DS_Store
Thumbs.db
desktop.ini

# ─── UV / pip ───
uv.lock
*.lock
pip-log.txt
pip-delete-this-directory.txt

# ─── Secrets — never commit ───
.env
.env.*
*.pem
*.key
credentials.json

# ─── Logs ───
*.log

# ─── mypy ───
.mypy_cache/
.dmypy.json
dmypy.json

# ─── ruff ───
.ruff_cache/

# ─── Jupyter ───
.ipynb_checkpoints/
