gabion 0.1.0__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.
gabion/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Gabion package root."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.1.0"
gabion/__main__.py ADDED
@@ -0,0 +1,11 @@
1
+ from __future__ import annotations
2
+
3
+ from .cli import app
4
+
5
+
6
+ def main() -> None:
7
+ app()
8
+
9
+
10
+ if __name__ == "__main__":
11
+ main()
@@ -0,0 +1,37 @@
1
+ """Static analysis subpackage for Gabion."""
2
+
3
+ from .dataflow_audit import (
4
+ AnalysisResult,
5
+ AuditConfig,
6
+ analyze_paths,
7
+ apply_baseline,
8
+ build_refactor_plan,
9
+ build_synthesis_plan,
10
+ compute_violations,
11
+ load_baseline,
12
+ render_dot,
13
+ render_refactor_plan,
14
+ render_report,
15
+ render_protocol_stubs,
16
+ render_synthesis_section,
17
+ resolve_baseline_path,
18
+ write_baseline,
19
+ )
20
+
21
+ __all__ = [
22
+ "AnalysisResult",
23
+ "AuditConfig",
24
+ "analyze_paths",
25
+ "apply_baseline",
26
+ "build_refactor_plan",
27
+ "build_synthesis_plan",
28
+ "compute_violations",
29
+ "load_baseline",
30
+ "render_dot",
31
+ "render_refactor_plan",
32
+ "render_report",
33
+ "render_protocol_stubs",
34
+ "render_synthesis_section",
35
+ "resolve_baseline_path",
36
+ "write_baseline",
37
+ ]