""" Root-level Installer package for Prole. This package contains the refactored modules extracted from the legacy monolithic `install.py`. Modules: - config: shared paths, dependency catalog, platform helpers, version utils. - build: Prole app build command composition. - workstation: Docker workstation helpers (version parsing, docker build cmd). - deploy: host-side deploy helpers (Xcode tools check, app build flow). - screen: (optional) UI controller placement point. The entry point remains at `prole/install.py` and the legacy root `install.py` continues to work, but now delegates to `installer.*` modules. """ __all__ = [ "config", "build", "workstation", "deploy", "screen", ]