orbi-cli 0.5.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orbi/__init__.py +21 -0
- orbi/cli.py +856 -0
- orbi/cli_source.py +389 -0
- orbi/delivery_labels.py +171 -0
- orbi/delivery_scene.py +238 -0
- orbi/engine_source.py +464 -0
- orbi/example_config.toml +188 -0
- orbi/git_transport.py +293 -0
- orbi/github.py +865 -0
- orbi/gitops.py +329 -0
- orbi/human_review.py +210 -0
- orbi/journal.py +526 -0
- orbi/launchd_deploy.py +331 -0
- orbi/pi_activity.py +484 -0
- orbi/pi_process.py +1620 -0
- orbi/pi_recovery.py +487 -0
- orbi/pilot_setup.py +1252 -0
- orbi/pilot_slots.py +210 -0
- orbi/progress.py +644 -0
- orbi/release.py +2329 -0
- orbi/repo_config.py +449 -0
- orbi/runner.py +8873 -0
- orbi/runner_health.py +747 -0
- orbi/scene.py +226 -0
- orbi/scheduler.py +527 -0
- orbi/systemd_deploy.py +361 -0
- orbi_cli-0.5.6.dist-info/METADATA +192 -0
- orbi_cli-0.5.6.dist-info/RECORD +32 -0
- orbi_cli-0.5.6.dist-info/WHEEL +5 -0
- orbi_cli-0.5.6.dist-info/entry_points.txt +2 -0
- orbi_cli-0.5.6.dist-info/licenses/LICENSE.md +96 -0
- orbi_cli-0.5.6.dist-info/top_level.txt +1 -0
orbi/__init__.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""Orbi runtime package.
|
|
2
|
+
|
|
3
|
+
Standard src layout: the uv editable install maps this WHOLE package
|
|
4
|
+
directory onto the deployment checkout, so a newly added module in this
|
|
5
|
+
package is importable by the next CLI process without regenerating any
|
|
6
|
+
module list (the #158 stale-finder root cause).
|
|
7
|
+
|
|
8
|
+
The runtime entry points:
|
|
9
|
+
|
|
10
|
+
- `orbi.cli` — the `orbi` console script target
|
|
11
|
+
(`orbi = "orbi.cli:main"` in pyproject.toml);
|
|
12
|
+
- `orbi.runner` — the Runner tick (`python3 -m
|
|
13
|
+
orbi.runner --config ...`), the systemd ExecStart target
|
|
14
|
+
through the installed console script.
|
|
15
|
+
|
|
16
|
+
The checkout root carries NO `orbi.py`: a flat file named like
|
|
17
|
+
the package would shadow the installed package for every process with
|
|
18
|
+
the checkout root on sys.path. The direct-execution compatibility entry
|
|
19
|
+
is `python3 -m orbi.cli` (development path only).
|
|
20
|
+
"""
|
|
21
|
+
__version__ = "0.5.6"
|