runtime-sdk 0.4.41__py3-none-macosx_13_0_arm64.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.
- runtime_sdk/__init__.py +18 -0
- runtime_sdk/cli.py +4054 -0
- runtime_sdk/client.py +556 -0
- runtime_sdk/config.py +78 -0
- runtime_sdk/runtime-tui +0 -0
- runtime_sdk-0.4.41.dist-info/METADATA +243 -0
- runtime_sdk-0.4.41.dist-info/RECORD +10 -0
- runtime_sdk-0.4.41.dist-info/WHEEL +5 -0
- runtime_sdk-0.4.41.dist-info/entry_points.txt +2 -0
- runtime_sdk-0.4.41.dist-info/top_level.txt +1 -0
runtime_sdk/__init__.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
2
|
+
|
|
3
|
+
from runtime_sdk.client import RuntimeAPIError, RuntimeClient
|
|
4
|
+
from runtime_sdk.config import PendingSignup, RuntimeConfig, RuntimeConfigError
|
|
5
|
+
|
|
6
|
+
try:
|
|
7
|
+
__version__ = version("runtime-sdk")
|
|
8
|
+
except PackageNotFoundError: # pragma: no cover - local source tree fallback
|
|
9
|
+
__version__ = "0.0.0"
|
|
10
|
+
|
|
11
|
+
__all__ = [
|
|
12
|
+
"PendingSignup",
|
|
13
|
+
"RuntimeAPIError",
|
|
14
|
+
"RuntimeClient",
|
|
15
|
+
"RuntimeConfig",
|
|
16
|
+
"RuntimeConfigError",
|
|
17
|
+
"__version__",
|
|
18
|
+
]
|