# Python
venv/
.venv/
__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
MANIFEST

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

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

# Environment
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Database
*.db
*.sqlite
*.sqlite3

# Logs
*.log
logs/

# OS
.DS_Store
Thumbs.db

# Python cache
**/__pycache__/

# Benchmark outputs
benchmark/reports/*
!benchmark/reports/.gitkeep

# Local benchmark artifacts
baseline.jsonl
wisepick.jsonl
summary.json

# Runtime artifacts
runtime/
tmp/
temp/

# Temporary local tests
tests/temporary_*.py
tests/stress_test.py

# Migrations
migrations/