-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 1.09 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "numcodecs-combinators"
version = "0.2.14"
description = "Combinator codecs for the `numcodecs` buffer compression API"
readme = "README.md"
license = "MPL-2.0"
requires-python = ">=3.10"
dependencies = [
"leb128~=1.0.8",
"numcodecs>=0.13.0,<0.17",
"numpy~=2.0",
"typing-extensions~=4.6",
]
optional-dependencies.xarray = [ "xarray>=2024.06", "dask>=2024.6" ]
[dependency-groups]
dev = ["mypy~=1.14", "pytest~=8.3"]
[project.entry-points."numcodecs.codecs"]
"combinators.best" = "numcodecs_combinators.best:PickBestCodec"
"combinators.framed" = "numcodecs_combinators.framed:FramedCodecStack"
"combinators.stack" = "numcodecs_combinators.stack:CodecStack"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"numcodecs_combinators" = ["py.typed"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
xfail_strict = true
[[tool.mypy.overrides]]
module = ["leb128.*", "numcodecs.*"]
follow_untyped_imports = true