-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (26 loc) · 928 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
33
34
35
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "numcodecs_wasm_%package_suffix%"
version = "%crate-version%"
description = "numcodecs-%crate-suffix% compression codec compiled to WebAssembly"
authors = [{ name = "Juniper Tyree", email = "[email protected]" }]
maintainers = [{ name = "Juniper Tyree", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"numcodecs-wasm~=0.1.5", # wasi 0.2.3
]
[project.entry-points."numcodecs.codecs"]
"%codec-id%" = "numcodecs_wasm_%package_suffix%:%CodecName%"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
numcodecs_wasm_%package_suffix% = ["codec.wasm"]
[tool.setuptools]
# Workaround for
# https://github.com/astral-sh/uv/issues/9513
# https://github.com/pypa/setuptools/issues/4759
license-files = []