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

# Virtual environments
.venv/
venv/
env/

# Shelfie runtime data
*.db
*.db-journal
.shelfie/
library_path.txt

# Cover images (generated at runtime)
src/shelfie/static/covers/*
src/shelfie/static/covers/*.png
src/shelfie/static/covers/*.webp

# Environment files
.env
.env.*

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

# OS
.DS_Store
Thumbs.db
desktop.ini

# Testing
.pytest_cache/
.coverage
htmlcov/

# Type checking / linting
.mypy_cache/
.ruff_cache/