# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.nox/

# Coverage and test output
.coverage
.coverage.*
htmlcov/
coverage.xml

# Build and packaging artifacts
build/
dist/
*.egg-info/
*.egg

# Virtual environments
.venv/
venv/
env/

# Local configuration and secrets
.env
.env.*
!.env.example

# Local databases and generated demo data
*.db
*.sqlite
*.sqlite3

# Installer and tool caches
.pip-cache/
.uv-cache/

# OS and editor files
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo

