# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
build/
dist/
.venv/
venv/
env/
.python-version

# Test / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.mypy_cache/
.ruff_cache/

# Editor / OS
.idea/
.vscode/
.DS_Store
__MACOSX/
Thumbs.db
*.swp
*~

# Secrets — never commit
.env
.env.*
!.env.example
*.key
*.pem

# Build artifacts
*.whl
*.tar.gz
