# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.egg
*.egg-info/
dist/
build/
.eggs/
*.whl

# Virtual environments
.venv/
venv/
env/

# uv
.uv/

# Pytest / coverage
.pytest_cache/
.hypothesis/
.benchmarks/
.coverage
coverage.xml
htmlcov/

# Type checkers
.mypy_cache/
.pyright/

# Ruff
.ruff_cache/

# Docs build output (source stays; built HTML does not)
docs/build/

# Jupyter
.ipynb_checkpoints/
*.ipynb_checkpoints

# Results (generated data, not source)
results/

# OS
.DS_Store
Thumbs.db

# IDE
.vscode/
.idea/

# Secrets / env files
.env
.env.*
!.env.example
