# Environment variables and secrets
.env
.env.*
!.env.example

# Python virtual environment
.venv/

# Python-generated files
__pycache__/
*.py[cod]

# Testing and coverage
.pytest_cache/
.coverage
htmlcov/

# Type-checking and linting caches
.mypy_cache/
.pyright/
.ruff_cache/

# Package build output
build/
dist/
*.egg-info/
