prole/knoe/__init__.py

31 lines
839 B
Python

"""
Root-level Installer package for Knoe.
This package contains the refactored modules extracted from the legacy
monolithic `install.py`.
Modules:
- config: shared paths, dependency catalog, platform helpers, version utils.
- build: Knoe app build command composition.
- deploy: host-side deploy helpers (Xcode tools check, app build flow).
- milestone: installer milestone abstraction.
- state: installer state model.
- runner: milestone runner with event callbacks.
- core: UI-agnostic installer core wrapper.
- screen: (optional) UI controller placement point.
The entry point remains at `knoe/install.py` and the legacy root `install.py`
continues to work, but now delegates to `installer.*` modules.
"""
__all__ = [
"config",
"build",
"deploy",
"milestone",
"state",
"runner",
"core",
"screen",
]