vpod 0.0.1__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.
vpod-0.0.1/.gitignore ADDED
@@ -0,0 +1 @@
1
+ /target
vpod-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: vpod
3
+ Version: 0.0.1
4
+ Summary: VPod: A RISC-V Linux sandbox in WASM for AI agents.
5
+ Project-URL: Homepage, https://github.com/capsulerun/vpod
6
+ Author: Capsule Team
7
+ License-Expression: MIT
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown
10
+
11
+ VPod: A RISC-V Linux sandbox in WASM for AI agents. (WIP)
12
+
13
+ Project from [Caspule](https://github.com/capsulerun) team
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "vpod"
7
+ version = "0.0.1"
8
+ description = "VPod: A RISC-V Linux sandbox in WASM for AI agents."
9
+ authors = [
10
+ { name = "Capsule Team" }
11
+ ]
12
+ readme = "readme.md"
13
+ license = "MIT"
14
+ requires-python = ">=3.8"
15
+ dependencies = []
16
+
17
+ [project.urls]
18
+ Homepage = "https://github.com/capsulerun/vpod"
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = ["python/vpod"]
22
+
23
+ [tool.hatch.build.targets.sdist]
24
+ include = ["python/vpod"]
@@ -0,0 +1,2 @@
1
+ # Placeholder for vpod python package
2
+ __version__ = "0.0.1"
vpod-0.0.1/readme.md ADDED
@@ -0,0 +1,3 @@
1
+ VPod: A RISC-V Linux sandbox in WASM for AI agents. (WIP)
2
+
3
+ Project from [Caspule](https://github.com/capsulerun) team