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

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

# uv
.uv/
uv.lock

# Packaging / distribution
/dist/
/build/

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
nosetests.xml
coverage.xml
*.cover

# Type checking
.mypy_cache/
.pytype/
.pyre/
.ruff_cache/

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

# OS
.DS_Store
Thumbs.db

# Secrets / local config
.env
.envrc
*.local

# Docs build
docs/_build/
site/

# Jupyter
.ipynb_checkpoints/
