# .gitignore for Email-to-EML Secure Archiver

# Authentication tokens (CRITICAL - never commit these!)
auth/
*.json
!config/checkpoint.json
!pyproject.toml

# Downloaded emails (may contain sensitive data)
downloads/

# Classification metadata (may contain sensitive data)
*.jsonl
email_metadata.jsonl

# Logs
*.log
sync.log

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

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

# UV
.uv/

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

# Testing
.pytest_cache/
.coverage
htmlcov/

# Temporary files
*.tmp
*.bak

# Database
*.sqlite
