costguard-cli 1.0.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.
@@ -0,0 +1,3 @@
1
+ """CostGuard CLI — shift-left cost governance for CI/CD pipelines."""
2
+
3
+ __version__ = "1.0.0"
@@ -0,0 +1,5 @@
1
+ """Allow running CostGuard CLI via `python -m costguard_cli`."""
2
+
3
+ from costguard_cli.validate import main
4
+
5
+ main()
@@ -0,0 +1,15 @@
1
+ """CostGuard output formatters."""
2
+
3
+ from costguard_cli.formatters.terminal import TerminalFormatter
4
+ from costguard_cli.formatters.markdown import MarkdownFormatter
5
+ from costguard_cli.formatters.json_report import JsonFormatter
6
+ from costguard_cli.formatters.html_report import HtmlFormatter
7
+
8
+ FORMATTERS = {
9
+ "terminal": TerminalFormatter,
10
+ "markdown": MarkdownFormatter,
11
+ "json": JsonFormatter,
12
+ "html": HtmlFormatter,
13
+ }
14
+
15
+ __all__ = ["FORMATTERS", "TerminalFormatter", "MarkdownFormatter", "JsonFormatter", "HtmlFormatter"]