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

# Virtual envs
.venv/
venv/
env/

# Test / coverage
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
.coverage.*
coverage.xml

# Editors
.vscode/
.idea/
*.swp

# OS
.DS_Store
Thumbs.db

# Example run artifacts
examples/**/run_report.json
examples/**/*.log

# Packaging
*.whl
*.tar.gz
