ML Environment Setup
Setup development environment with modern Python tooling (uv/pixi), install dependencies, and configure development tools.
Process
1. Detect Project State
First, check what's already configured:
# Check for existing package managers
ls pyproject.toml 2>/dev/null && echo "Found pyproject.toml (uv/pip)"
ls pixi.toml 2>/dev/null && echo "Found pixi.toml (pixi)"
ls requirements.txt 2>/dev/null && echo "Found requirements.txt (pip)"
2. Ask User Pref
[Description truncada. Veja o README completo no GitHub.]