hyperlight-sandbox-backend-wasm 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.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: hyperlight-sandbox-backend-wasm
3
+ Version: 0.0.1
4
+ Summary: Wasm backend implementation for hyperlight-sandbox
5
+ Author: Hyperlight Team
6
+ License-Expression: Apache-2.0
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Programming Language :: Python :: 3
9
+ Requires-Python: >=3.10
@@ -0,0 +1,3 @@
1
+ # hyperlight-sandbox-backend-wasm
2
+
3
+ Wasm backend implementation for hyperlight-sandbox
@@ -0,0 +1,3 @@
1
+ """Placeholder package – the real implementation is coming soon."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "hyperlight-sandbox-backend-wasm"
7
+ version = "0.0.1"
8
+ description = "Wasm backend implementation for hyperlight-sandbox"
9
+ requires-python = ">=3.10"
10
+ license = "Apache-2.0"
11
+ authors = [
12
+ { name = "Hyperlight Team" },
13
+ ]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Programming Language :: Python :: 3",
17
+ ]
18
+
19
+ [tool.hatch.build.targets.wheel]
20
+ packages = ["hyperlight_sandbox_backend_wasm"]