# Python
__pycache__/
*.py[cod]
*.egg-info/
build/
dist/
# No trailing slash: the venv may be a symlink to storage outside the home
# quota, and a trailing slash matches directories only -- git treats a symlink
# as a file, so `.venv/` would leave it untracked-but-visible.
.venv
venv/

# Tooling
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

# VisBench artifacts
.visbench_cache/
results/*.jsonl
checkpoints/

# Editors / OS
.vscode/
.idea/
.DS_Store
