withruntime 0.2.0__tar.gz
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.
- withruntime-0.2.0/PKG-INFO +24 -0
- withruntime-0.2.0/README.md +13 -0
- withruntime-0.2.0/pyproject.toml +19 -0
- withruntime-0.2.0/setup.cfg +4 -0
- withruntime-0.2.0/withruntime/__init__.py +8 -0
- withruntime-0.2.0/withruntime.egg-info/PKG-INFO +24 -0
- withruntime-0.2.0/withruntime.egg-info/SOURCES.txt +8 -0
- withruntime-0.2.0/withruntime.egg-info/dependency_links.txt +1 -0
- withruntime-0.2.0/withruntime.egg-info/requires.txt +1 -0
- withruntime-0.2.0/withruntime.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: withruntime
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Runtime Cloud (withruntime.com): sandboxes for AI agents. `import withruntime`; installs the official withruntime-cloud SDK.
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Homepage, https://withruntime.com
|
|
7
|
+
Project-URL: Documentation, https://withruntime.com/docs
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: withruntime-cloud>=0.2.0
|
|
11
|
+
|
|
12
|
+
# withruntime
|
|
13
|
+
|
|
14
|
+
Runtime Cloud from [withruntime.com](https://withruntime.com).
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
pip install withruntime
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```python
|
|
21
|
+
import withruntime
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
This installs and re-exports the official `withruntime-cloud` SDK.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "withruntime"
|
|
7
|
+
version = "0.2.0"
|
|
8
|
+
description = "Runtime Cloud (withruntime.com): sandboxes for AI agents. `import withruntime`; installs the official withruntime-cloud SDK."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
dependencies = ["withruntime-cloud>=0.2.0"]
|
|
12
|
+
license = "MIT"
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://withruntime.com"
|
|
16
|
+
Documentation = "https://withruntime.com/docs"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools]
|
|
19
|
+
packages = ["withruntime"]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Runtime Cloud's Python SDK under the name ``withruntime``.
|
|
2
|
+
|
|
3
|
+
Everything here is the official ``withruntime-cloud`` package (module
|
|
4
|
+
``runtime_cloud``), re-exported so ``import withruntime`` works.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from runtime_cloud import * # noqa: F401,F403
|
|
8
|
+
from runtime_cloud import __all__ as __all__ # noqa: F401
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: withruntime
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Runtime Cloud (withruntime.com): sandboxes for AI agents. `import withruntime`; installs the official withruntime-cloud SDK.
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Homepage, https://withruntime.com
|
|
7
|
+
Project-URL: Documentation, https://withruntime.com/docs
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: withruntime-cloud>=0.2.0
|
|
11
|
+
|
|
12
|
+
# withruntime
|
|
13
|
+
|
|
14
|
+
Runtime Cloud from [withruntime.com](https://withruntime.com).
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
pip install withruntime
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```python
|
|
21
|
+
import withruntime
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
This installs and re-exports the official `withruntime-cloud` SDK.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
withruntime-cloud>=0.2.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
withruntime
|