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

# Virtual environments
.venv/
venv/
env/

# uv
.uv/

# Jupyter
.ipynb_checkpoints/
notebooks/*_executed.ipynb

# Test artifacts
.pytest_cache/
.coverage
htmlcov/
*.xml

# Credentials / secrets — NEVER commit these
.env
integration.env
secrets.env
*.env

# macOS
.DS_Store

# IDE
.vscode/
.idea/
*.swp
