-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (63 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
67 lines (63 loc) · 1.57 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
63
64
65
66
67
[build-system]
requires = ["setuptools", "wheel"]
[project]
authors = [
{name = 'Christos Kotsalos', email = 'christos.kotsalos@cscs.ch'},
{name = 'Nicoletta Farabullini', email = 'nicoletta.farabullini@c2sm.ethz.ch'},
]
dependencies = [
"click",
"pyyaml",
"numpy==2.2.6",
"xarray",
"humanize",
"streamlit",
"tslearn",
"scipy",
"PyWavelets",
"dask[complete]==2025.7.0",
"h5py >=3.11",
"zarr >=3.1.1, <3.1.3",
"numcodecs <0.16.3",
"zarr-any-numcodecs >=0.1.3",
"json5",
"rich",
"zfpy",
"pcodec",
"tqdm",
"matplotlib",
"netCDF4",
"h5netcdf",
"plotly",
"cfgrib",
"numcodecs_wasm",
"numcodecs_combinators",
"numcodecs_observers",
"numcodecs_wasm_asinh",
"numcodecs_wasm_bit_round",
"numcodecs_wasm_fixed_offset_scale",
"numcodecs_wasm_identity",
"numcodecs_wasm_linear_quantize",
"numcodecs_wasm_log",
"numcodecs_wasm_round",
"numcodecs_wasm_swizzle_reshape",
"numcodecs_wasm_uniform_noise",
"numcodecs_wasm_zlib",
"numcodecs_wasm_zstd",
"numcodecs_wasm_pco",
"numcodecs_wasm_sperr",
"numcodecs_wasm_sz3",
"numcodecs_wasm_zfp",
]
description = 'Data compression tool for Weather and Climate data'
name = 'dc_toolkit'
readme = {file = 'README.md', content-type = 'text/markdown'}
requires-python = '>=3.11'
version = '0.0'
[project.scripts]
dc_toolkit = 'dc_toolkit.cli:cli'
model_eval_cscs_exclaim = 'model_eval_cscs_exclaim.cli:cli'
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]