-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hyperlight-sandbox"
version = "0.4.0"
description = "Python API for running code in isolated Hyperlight sandboxes with swappable backends"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
dependencies = []
optional-dependencies = { wasm = ["hyperlight-sandbox-backend-wasm>=0.4.0"], hyperlight_js = ["hyperlight-sandbox-backend-hyperlight-js>=0.4.0"], python_guest = ["hyperlight-sandbox-python-guest>=0.4.0"], javascript_guest = ["hyperlight-sandbox-javascript-guest>=0.4.0"], dev = ["atheris>=2.3.0"] }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
]
keywords = ["hyperlight", "wasm", "sandbox", "isolation", "code-execution"]
[project.urls]
Repository = "https://github.com/hyperlight-dev/hyperlight-wasm"
[tool.setuptools]
packages = ["hyperlight_sandbox"]
[tool.setuptools.package-data]
hyperlight_sandbox = ["py.typed"]