-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
52 lines (47 loc) · 1.37 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
46
47
48
49
50
51
52
[build-system]
requires = [
"setuptools >= 60",
"setuptools-scm >= 8.0",
]
[project]
authors = [
{name = "Olivia Ryan", email = "olivia.r.dev@gmail.com"},
]
classifiers = [
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Environment :: WebAssembly",
"Environment :: WebAssembly :: WASI",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"appdirs",
"requests",
"setuptools >= 66.1.0",
"tqdm",
]
description = "WebAssembly build tool for CPython C/C++ extensions"
dynamic = ["version"]
license = {file = "LICENSE"}
name = "wasmpy-build"
readme = "README.md"
requires-python = ">= 3.6"
[project.urls]
"Issues" = "https://github.com/olivi-r/wasmpy-build/issues"
"Repository" = "https://github.com/olivi-r/wasmpy-build"
[project.scripts]
wasmpy-build = "wasmpy_build.cli:buildc"
"wasmpy-build++" = "wasmpy_build.cli:buildcpp"
wasmpy-build-cpp = "wasmpy_build.cli:buildcpp"
[tool.setuptools]
packages = ["wasmpy_build"]
[tool.setuptools_scm]