-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 788 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 788 Bytes
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
[tool.poetry]
name = "xso"
version = "0.1.0"
description = "Framework for building and solving ODE-based models, an extension of xarray-simlab"
authors = ["Benjamin Post"]
license = "BSD 3-Clause"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
xarray-simlab = "^0.5.0"
scipy = ">=1.9.1"
dask = {extras = ["distributed"], version = ">=2022.10.0"}
zarr = "^2.18.4"
xarray = ">=0.10.0"
numpy = "^1.26.4"
tqdm = "*"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
myst-nb = "*"
sphinx-autoapi = "*"
sphinx-toolbox = "*"
sphinx-rtd-theme = "*"
docutils = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"