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

# Secrets / local env
.env
.env.*
!.env.example
.pypirc
*.pem
*.key

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

# Build / packaging
dist/
build/
wheels/
*.whl
*.tar.gz
sdist/
MANIFEST

# Test / coverage / type / lint caches
.pytest_cache/
.tox/
.nox/
.coverage
.coverage.*
coverage.xml
htmlcov/
.cache/
.mypy_cache/
.ruff_cache/
.pytype/
.pyre/
.dmypy.json
dmypy.json

# CodexRay local cache / reports
.codexray/
codexray-report.*
HEALTH.md
health.html
*.sarif

# Generated HTML reports (keep docs/)
*.html
!docs/**

# OS / editors / IDEs
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
*~

# Jupyter
.ipynb_checkpoints/

# Logs / temp
*.log
tmp/
temp/
*.tmp
