# Environment & secrets — NEVER commit these
.env
.env.local
.env.*.local

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg
*.egg-info/
dist/
build/
.eggs/
*.whl

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

# uv
.uv/

# Briefcase build artefacts
build/
dist/
logs/

# macOS
.DS_Store
.AppleDouble
.LSOverride
Thumbs.db

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

# pytest / coverage
.pytest_cache/
.coverage
htmlcov/
*.xml

# Ruff / linters
.ruff_cache/
