code-delegation-harness 0.2.1__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.
@@ -0,0 +1,34 @@
1
+ """
2
+ Code Delegation Harness
3
+
4
+ Professional packaging for the `gcdh` command.
5
+ """
6
+
7
+ from importlib.metadata import version as _pkg_version, PackageNotFoundError
8
+
9
+ from .harness import (
10
+ main,
11
+ prune_completed_status_files,
12
+ normalize_result,
13
+ render_human_report,
14
+ _determine_status,
15
+ _compute_diffs_and_stats,
16
+ _print_dry_run_preview,
17
+ _make_delegate_status,
18
+ _write_status_file,
19
+ _finalize_delegate_status,
20
+ _wait_for_background_completion,
21
+ )
22
+
23
+ try:
24
+ __version__ = _pkg_version("code-delegation-harness")
25
+ except (PackageNotFoundError, Exception):
26
+ __version__ = "0.2.0"
27
+
28
+ __all__ = [
29
+ "main",
30
+ "prune_completed_status_files",
31
+ "normalize_result",
32
+ "render_human_report",
33
+ "__version__",
34
+ ]
@@ -0,0 +1,4 @@
1
+ from . import main
2
+
3
+ if __name__ == "__main__":
4
+ main()
@@ -0,0 +1,9 @@
1
+ """
2
+ CLI entry point for the `gcdh` command.
3
+
4
+ This module provides the console_script target:
5
+ gcdh = "code_delegation_harness.cli:main"
6
+ """
7
+ from .harness import main
8
+
9
+ __all__ = ["main"]