# Environment and secrets
.env
.env.local
.env.*.local

# Python
.venv/
venv/
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
dist/
build/

# Machine-learning artifacts (created in later phases)
ml/artifacts/
*.joblib
*.pkl
*.pickle

# Logs and local data
logs/
*.log
tmp/
temp/

# IDE and OS
.idea/
.vscode/
*.swp
Thumbs.db
Desktop.ini
.DS_Store
