# Virtual environment
venv/
.venv/
env/

# Build artifacts
dist/
build/
*.egg-info/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python

# Test cache
.pytest_cache/
.coverage
htmlcov/

# Audit logs (generated at runtime)
*.jsonl
*.jsonl.*

# Environment / secrets
.env
*.env

# Editor
.vscode/
.idea/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# mypy
.mypy_cache/