-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.48 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
[project]
name = "climatebenchpress.data_loader"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"cf-xarray~=0.10.0",
"cftime~=1.6.0",
"dask>=2024.12.0,<2025.4",
"earthkit-regrid~=0.5.0",
"fsspec>=2024.10.0,<2025.4",
"gribscan~=0.0.14",
"healpy~=1.18.0",
# These versions need to be pinned to be compatible with the NextGEMS
# catalog at https://data.nextgems-h2020.eu/online.yaml.
"intake==0.7.0",
"intake-xarray==0.7.0",
"requests~=2.32.3",
# Setuptools is added to ensure compatibility with intake-xarray version 0.7.0.
# intake-xarray is relying on distutils which was removed from Python 3.12.
"setuptools~=75.8.2",
"tqdm~=4.67.1",
"typed-classproperties~=1.1.0",
"xarray>=2024.11.0,<2025.4",
"zarr~=2.18.0",
]
optional-dependencies.data = [
"aiohttp~=3.11.0",
"netcdf4~=1.7.2",
"pandas~=2.2.0",
]
[dependency-groups]
dev = [
"ipykernel~=6.29",
"mypy~=1.14",
"pandas-stubs~=2.2.0",
"pytest~=8.3",
"ruff~=0.15",
"types-requests~=2.32.0.20241016",
"types-tqdm~=4.67.0.20250301",
"universal-pathlib~=0.2.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"climatebenchpress.compressor" = ["py.typed"]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[[tool.mypy.overrides]]
module = ["fsspec.*", "intake.*", "healpy.*", "earthkit.*"]
follow_untyped_imports = true