-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (33 loc) · 949 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "mlpp-lib"
version = "0.14.0"
description = "Collection of methods for ML-based postprocessing of weather forecasts."
authors = ["Daniele Nerini <daniele.nerini@meteoswiss.ch>"]
include = ["LICENSE", "README.md"]
[tool.poetry.dependencies]
python = ">=3.9, <3.11"
numpy = "*"
tensorflow = {version = "~2.16.1", optional = true}
tensorflow-cpu = {version = "~2.16.1", optional = true}
tensorflow-probability = "~0.24.0"
tf-keras = "~2.16.0"
pandas = "*"
scipy = "*"
xarray = "*"
dask = "*"
properscoring = "^0.1"
numba = {version = "*", optional = true}
zarr = {version = "*", optional = true}
[tool.poetry.extras]
tensorflow = ["tensorflow"]
tensorflow-cpu = ["tensorflow-cpu"]
extended = ["zarr", "numba", "tensorflow"]
[tool.poetry.group.dev.dependencies]
tensorflow = "~2.16.1"
pytest = "*"
black = "*"
mlflow = "*"
jupyter = "*"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"