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

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

# Virtual environments
.venv/
venv/
env/
ENV/

# Test, coverage, and tool caches
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.ruff_cache/
.mypy_cache/
.pyright/

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

# OS and editor files
.DS_Store
.idea/
.vscode/
