# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.pyd

# Build / distribution
build/
dist/
*.egg-info/
.eggs/
*.egg
MANIFEST

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

# Environment files (credentials — never commit)
.env
.env.*
!.env.example

# Test / coverage artefacts
.pytest_cache/
.coverage
.coverage.*
htmlcov/
*.cover
*.coveragerc

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json

# Linting
.ruff_cache/

# IDE
.idea/
.vscode/
*.swp
*.swo

# macOS
.DS_Store
