forked from pyodide/auditwheel-emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 683 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 683 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "auditwheel_emscripten"
authors = [{name = "Gyeongjae Choi", email = "def6488@gmail.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.file = "LICENSE"
[project.optional-dependencies]
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"