-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 983 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 983 Bytes
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "auditwheel_emscripten"
authors = [{ name = "Gyeongjae Choi", email = "def6488@gmail.com" }]
maintainers = [
{ name = "Gyeongjae Choi", email = "def6488@gmail.com" },
{ name = "Robert Hood Chatham", email = "roberthoodchatham@gmail.com" },
{ name = "Agriya Khetarpal", email = "agriyakhetarpal@outlook.com" },
]
readme = "README.md"
description = "auditwheel-like tool for Pyodide"
dynamic = ["version"]
requires-python = ">=3.12"
dependencies = [
"leb128",
"packaging",
"pyodide-cli>=0.4",
"wheel",
]
license = "MPL-2.0 AND (MIT OR NCSA)"
license-files = ["LICENSE", "auditwheel_emscripten/emscripten_tools/LICENSE"]
[dependency-groups]
test = ["pytest"]
[project.urls]
Home = "https://github.com/pyodide/auditwheel-emscripten"
[project.entry-points."pyodide.cli"]
auditwheel = "auditwheel_emscripten.cli.main:app"
[tool.hatch.version]
source = "vcs"