# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class

# Virtual environments
.venv/
venv/
uv.lock

# Tool caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
coverage.xml
htmlcov/

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

# IDE
.idea/
.vscode/

# OS files
.DS_Store

# Local secrets and environment (keep .env.example committed if you add one)
.env
.env.*
!.env.example
