# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
*.egg
.eggs/
pip-wheel-metadata/

# Virtual environments
.venv/
.env/
env/
venv/

# Pixi
.pixi/
# ...and as a bare symlink: a worktree may link .pixi at another checkout's
# environments, which `.pixi/` does not match (it matches a directory only),
# so `git add -A` would otherwise commit a path valid on exactly one machine.
.pixi

# Testing / tooling
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.mypy_cache/
.ruff_cache/

# Editors
.vscode/
.idea/
*.swp
*.swo
.DS_Store

# Jupyter
.ipynb_checkpoints/

# Build artefacts
*.log

# Repo-local scratch (ephemeral probes, ad-hoc benches, notes)
tmp/
