forked from xarray-contrib/xeofs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (70 loc) · 1.79 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "xeofs"
version = "2.2.5"
description = "Comprehensive EOF analysis in Python with xarray: A versatile, multidimensional, and scalable tool for advanced climate data analysis"
authors = ["Niclas Rieger <[email protected]>", "Samuel J. Levang <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/xarray-contrib/xeofs"
repository = "https://github.com/xarray-contrib/xeofs"
documentation = "https://xeofs.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
poetry = "^1.6"
numpy = "^1.24"
pandas = "^2"
xarray = ">=2023"
scikit-learn = "^1.0.2"
pooch = "^1.6.0"
tqdm = "^4.64.0"
dask = ">=2023.0.1"
statsmodels = "^0.14.0"
netCDF4 = "^1.5.7"
numba = ">=0.57"
typing-extensions = "^4.8.0"
zarr = "^2.0.0"
xarray-datatree = ">=0.0.5"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
flake8 = "^4.0"
pytest = "^7.0"
coverage = "^6.3"
black = "~23.7.0"
pre-commit = "^3.3"
nbstripout = "^0.6"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
rpy2 = "^3.5"
sphinx-gallery = "^0.14"
sphinx-design = "^0.5"
sphinx-copybutton = "^0.5"
nbsphinx = "^0.9"
pydata-sphinx-theme = "^0.14"
sphinx = "^7.2"
nbconvert = "^7.9"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_toml = [ "pyproject.toml:tool.poetry.version" ]
version_source = "tag"
commit_message = "chore(release): v{version}"
build_command = "pip install poetry && poetry build"
branch = "main"
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"style",
"refactor",
"test",
]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]