-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cssi_evaluation"
version = "0.1.6"
description = "Model evaluation functions for the CSSI project"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"dask>=2022.5.1",
"hf_hydrodata>=1.1.11",
"hydroeval",
"matplotlib>=3.7.1",
"netcdf4>=1.6.4",
"numpy>=1.25.2",
"pandas>=2.1.0",
"pftools>=1.3.9",
"planetary-computer",
"python-dotenv",
"requests-cache",
"scikit-learn>=1.5.0",
"shapely>=2.0.1",
"subsettools>=2.0.0",
"xarray>=2023.8.0",
]
[project.optional-dependencies]
notebooks = [
"bokeh>=3.2.0,<3.4.0",
"distributed",
"hvplot==0.11.2",
"ipywidgets",
"jupyter-bokeh",
"jupyterlab",
"jupyterlab_widgets",
"panel==1.3.1",
"plotly",
"pyproj",
"subsettools>=2.0.0",
"nbformat>=4.2.0",
]
[dependency-groups]
test = ["pytest"]
dev = ["black", "pylint"]
[tool.hatch.build.targets.wheel]
packages = ["src/cssi_evaluation"]