# ---------------------------------
# Python bytecode & caches
# ---------------------------------
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so

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

# ---------------------------------
# Packaging / build
# ---------------------------------
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/

# ---------------------------------
# Test artifacts
# ---------------------------------
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
hypothesis/

# ---------------------------------
# IDEs & editors
# ---------------------------------
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# ---------------------------------
# Logs & temp files
# ---------------------------------
*.log
*.tmp
*.bak

# ---------------------------------
# Sphinx documentation
# ---------------------------------
docs/build/
docs/source/_build/
docs/_build/

# ---------------------------------
# Jupyter notebooks
# ---------------------------------
.ipynb_checkpoints/

# ---------------------------------
# CI artifacts
# ---------------------------------
.r_libs/
.cache/
