# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class

# Virtual environments
.venv/
venv/
env/
.python-version

# Build and packaging output
build/
dist/
*.egg-info/
.eggs/
*.egg

# Tests, coverage, and type-checker caches
.pytest_cache/
.coverage
.coverage.*
coverage.xml
htmlcov/
.mypy_cache/
.pyright/
.ruff_cache/
.tox/
.nox/

# Runtime rule stores and example output
.match_map/
examples/.runtime/

# Local configuration and secrets
.env
.env.*
!.env.example
examples/config.yaml
!examples/config.example.yaml

# Editors and operating systems
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db

