-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.21 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=61.2", "wheel"]
[project]
name = "wasmfunc"
version = "0.0.1"
description = "A WebAssembly compiler for Python"
authors = [
{name = "Jonathan Hargreaves", email = "jhargreaves189@gmail.com"},
]
readme = "README.md"
keywords = ["WebAssembly", "Compiler"]
classifiers = [
"Environment :: MacOS X",
"Environment :: WebAssembly",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Software Development :: Compilers",
]
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
'binaryen.py >= 117.1.0',
'wasmtime'
]
[project.urls]
"Source Code" = "https://github.com/jonathanharg/wasmfunc"
Issues = "https://github.com/jonathanharg/wasmfunc/issues"
[project.scripts]
wasmfunc = "wasmfunc.__main__:main"
[project.optional-dependencies]
dev = ["black", "isort", "pytest", "build"]
[tool.setuptools.packages.find]
include = ["wasmfunc"]
exclude = ["tests", "examples"]