-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (29 loc) · 877 Bytes
/
pyproject.toml
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
32
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "wasm-runtime"
version = "0.2"
description = "WebAssembly-powered, sandboxed implementation of Python runtime for safely exec()-cuting dynamic Python code."
keywords = ["wasm", "runtime", "python", "sandbox", "restricted", "limited"]
authors = [
{ name = "AWeirdDev", email = "aweirdscratcher@gmail.com" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3"
dependencies = [
"requests"
]
[project.urls]
"Source" = "https://github.com/AWeirdScratcher/wasm_runtime"
"Bug Tracker" = "https://github.com/AWeirdScratcher/wasm_runtime/issues"
[tool.setuptools]
packages = [
"wasm_runtime"
]