forked from DocOtak/gsw-xarray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (27 loc) · 946 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
[tool.poetry]
name = "gsw-xarray"
version = "0.3.0"
description = "Drop in wrapper for gsw which adds CF standard name and units attributes to xarray results"
authors = ["Andrew Barna <abarna@gmail.com>", "Romain Caneill <romain.caneill@ens-lyon.org>"]
license = "BSD-3-Clause"
readme = "README.rst"
repository = "https://github.com/DocOtak/gsw-xarray"
documentation = "https://gsw-xarray.readthedocs.io/"
[tool.poetry.dependencies]
python = ">=3.8"
xarray = ">=0.20.2"
gsw = ">=3.4.0"
Sphinx = {version = ">=4.4.0", optional = true}
furo = {version = ">=2022.1.2", optional = true}
pint-xarray = {version = '^0.2.1', optional = true}
Pint = {version = ">=0.18", optional = true}
[tool.poetry.dev-dependencies]
pytest = ">=6.2.5"
pre-commit = "^2.17.0"
black = "^22.3.0"
[tool.poetry.extras]
docs = ["Sphinx", "furo"]
pint = ["Pint", "pint-xarray"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"