Set up Python development environment using uv package manager.
/plugin marketplace add pborenstein/plinth/plugin install pborenstein-plinth@pborenstein/plinth# Python Environment Setup Set up Python development environment using uv package manager. ## Prerequisites Check 1. Verify uv is installed: If not found, install via homebrew: 2. Verify project has `pyproject.toml`: ## Setup Tasks 1. **Sync dependencies and create virtual environment**: This will: - Create `.venv/` directory if it doesn't exist - Install all dependencies from `pyproject.toml` - Lock dependencies in `uv.lock` - Handle local path dependencies automatically 2. **Set up environment file** (if `.env.example` exists): 3. **Ver...