-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (29 loc) · 924 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
36
37
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "numcodecs_wasm"
version = "0.1.5" # wasi 0.2.3
description = "numcodecs compression for codecs 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>=0.13.0,<0.16",
"numcodecs-observers~=0.1.1",
"numpy~=2.0",
"typing-extensions~=4.6",
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[dependency-groups]
dev = ["ruff~=0.9.0"]
[tool.maturin]
python-source = "py"
module-name = "numcodecs_wasm._wasm"
features = ["pyo3/extension-module"]