-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
62 lines (58 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "climatebenchpress.compressor"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"astropy~=7.2.0",
"cartopy~=0.24.1",
"cf-xarray~=0.10",
"cftime~=1.6.0",
"dask>=2024.12.0,<2025.4",
"matplotlib~=3.8",
"netcdf4==1.7.3",
"numcodecs>=0.13.0,<0.17",
"numcodecs-combinators[xarray]~=0.2.13",
"numcodecs-observers~=0.1.2",
"numcodecs-replace==0.1.0",
"numcodecs-safeguards==0.1.0b2",
"numcodecs-wasm==0.2.2",
"numcodecs-wasm-bit-round==0.4.0",
"numcodecs-wasm-fixed-offset-scale==0.4.0",
"numcodecs-wasm-jpeg2000==0.3.0",
"numcodecs-wasm-pco==0.3.0",
"numcodecs-wasm-round==0.5.0",
"numcodecs-wasm-sperr==0.2.0",
"numcodecs-wasm-stochastic-rounding==0.2.0",
"numcodecs-wasm-sz3==0.7.0",
"numcodecs-wasm-tthresh==0.3.0",
"numcodecs-wasm-zfp==0.6.0",
"numcodecs-wasm-zfp-classic==0.4.0",
"numcodecs-wasm-zstd==0.4.0",
"numcodecs-zero==0.1.2",
"pandas~=2.2",
"scipy~=1.14",
"seaborn~=0.13.2",
"tabulate~=0.9",
"typed-classproperties~=1.1.0",
"xarray>=2024.11.0,<2025.4",
"zarr~=2.18.0",
]
[dependency-groups]
dev = [
"ipykernel~=6.29",
"mypy~=1.14",
"pandas-stubs~=2.2",
"pre-commit~=4.0",
"ruff~=0.9",
"scipy-stubs~=1.15",
"types-seaborn~=0.13.2.20250111",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"climatebenchpress.compressor" = ["py.typed"]
[[tool.mypy.overrides]]
module = ["numcodecs.*", "astropy.convolution.*", "cartopy.*"]
follow_untyped_imports = true