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

# Virtualenvs
.venv/
venv/
env/
ENV/

# uv
.uv/

# Testing & coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover

# Type checkers
.mypy_cache/
.pyright/
.pytype/
.ruff_cache/

# IDE
.idea/
.vscode/
*.swp
*.swo
.DS_Store

# OS
Thumbs.db

# Reel local state (cassettes the user generates while developing reel itself)
/scratch/
/tmp_cassettes/

# Secrets — never commit
.env
.env.*
!.env.example

# Docs build
site/
docs/_build/
