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

# Testing / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
.hypothesis/

# Type checkers
.mypy_cache/
.ruff_cache/
.pyright/

# Virtual envs
.venv/
venv/
env/
.env

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# macOS
.DS_Store

# Local cache (llm-cal runtime cache lives in platform dirs, this catches accidental local writes)
.cache/
.llm-cal-cache/

# Fixture capture temp outputs (actual fixtures under tests/fixtures/ are committed)
tests/fixtures/_tmp/

# mkdocs build output
site/
.mkdocs_cache/
