forked from xarray-contrib/xeofs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 975 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
38
39
[tool.poetry]
name = "xeofs"
version = "0.7.0"
description = "Collection of EOF analysis and related techniques for climate science"
authors = ["Niclas Rieger <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/nicrie/xeofs"
repository = "https://github.com/nicrie/xeofs"
documentation = "https://xeofs.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.19.2"
pandas = "^1.4.1"
xarray = "^0.21.1"
scikit-learn = "^1.0.2"
pooch = "^1.6.0"
tqdm = "^4.64.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
pytest = "^7.0.1"
coverage = "^6.3.1"
netCDF4 = "^1.5.7"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"xeofs/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
uploade_to_release = true
build_command = "pip install poetry && poetry build"