# Virtual envs / local binaries
.venv/
venv/
env/
.local/
local/

# Python cache
__pycache__/
*.pyc
*.pyo
*.pyd

# Build artifacts
build/
dist/
.eggs/
*.egg-info/
*.egg

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

# Lint / type caches
.ruff_cache/
.mypy_cache/
.pyright/
.pytype/
.tox/

# IDEs
.idea/
.vscode/

# Jupyter
.ipynb_checkpoints/

# Docs builds
docs/
site/

# Environment files
.env
.env.*
!.env.example
!.envrc

# OS files
.DS_Store
Thumbs.db
