stacktrace-cli 0.0.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,3 @@
1
+ """Placeholder CLI package for Stacktrace.ai."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,24 @@
1
+ """Entry point for the ``stacktrace`` command."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import argparse
6
+
7
+ from . import __version__
8
+
9
+ HOMEPAGE = "https://stacktrace.ai"
10
+
11
+
12
+ def main(argv: list[str] | None = None) -> int:
13
+ parser = argparse.ArgumentParser(
14
+ prog="stacktrace",
15
+ description=f"Stacktrace.ai CLI (pre-alpha). See {HOMEPAGE}",
16
+ )
17
+ parser.add_argument("--version", action="version", version=f"stacktrace {__version__}")
18
+ parser.parse_args(argv)
19
+ print(f"stacktrace {__version__} — pre-alpha placeholder. See {HOMEPAGE}")
20
+ return 0
21
+
22
+
23
+ if __name__ == "__main__":
24
+ raise SystemExit(main())
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.5
2
+ Name: stacktrace-cli
3
+ Version: 0.0.1
4
+ Summary: Placeholder CLI for Stacktrace.ai — installs the `stacktrace` command.
5
+ Project-URL: Homepage, https://stacktrace.ai
6
+ Author-email: Prasanth G <prasanth@openaca.dev>
7
+ License-Expression: Apache-2.0
8
+ Keywords: agent-security,ai-security,openaca,stacktrace
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Security
14
+ Requires-Python: >=3.11
15
+ Requires-Dist: openaca>=0.4.0
16
+ Description-Content-Type: text/markdown
17
+
18
+ # stacktrace-cli
19
+
20
+ Command-line interface for [Stacktrace.ai](https://stacktrace.ai).
21
+
22
+ The PyPI distribution is named `stacktrace-cli` Installing this package provides
23
+ the `stacktrace` executable.
24
+
25
+ ```bash
26
+ pip install stacktrace-cli
27
+ stacktrace --version
28
+ ```
29
+
30
+ This is an early placeholder release. It depends on
31
+ [`openaca`](https://pypi.org/project/openaca/), the open-source Agent
32
+ Composition Analysis toolkit that Stacktrace.ai builds on.
33
+
34
+ ## Status
35
+
36
+ Pre-alpha. The CLI currently reports its version and points at the docs.
37
+ Functionality lands in later releases.
38
+
39
+
@@ -0,0 +1,6 @@
1
+ stacktrace_cli/__init__.py,sha256=gYVNfLbPuiHAVi48mkE47TiapqI3mmff0athyaOuucM,72
2
+ stacktrace_cli/__main__.py,sha256=2poXPNu4GNfjJfgZESabeGRcg_AKWKzQJBRz5L2RbC0,629
3
+ stacktrace_cli-0.0.1.dist-info/METADATA,sha256=cTisjWKAc4BXH7gFZTp6DYjmsACgu5-clnQO_4zIFXw,1186
4
+ stacktrace_cli-0.0.1.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
5
+ stacktrace_cli-0.0.1.dist-info/entry_points.txt,sha256=OYDmb2CtEjd8TV78zxiGB1XVrLrC6vvayAPXa79_tJ0,60
6
+ stacktrace_cli-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ stacktrace = stacktrace_cli.__main__:main