-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
101 lines (94 loc) · 2.01 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[project]
name = "xeofs"
version = "3.0.4"
description = "Comprehensive EOF analysis in Python with xarray: A versatile, multidimensional, and scalable tool for advanced climate data analysis"
authors = [
{name = "Niclas Rieger", email = "[email protected]"},
{name = "Samuel J. Levang", email = "[email protected]"},
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"pandas>=2",
"xarray>=2024.10.0",
"scikit-learn>=1.0.2",
"tqdm>=4.64.0",
"dask>=2023.0.1",
"typing-extensions>=4.8.0",
]
[project.optional-dependencies]
complete = ["xeofs[etc,io]"]
dev = [
"build>=1.0.0",
"ruff>=0.3",
"pytest>=7",
"pytest-xdist>=3",
"coverage>=6",
"pre-commit>=3",
"nbstripout>=0.6",
"pooch>=1.6.0",
]
docs = [
"rpy2>=3.5",
"sphinx-gallery>=0.14",
"sphinx-design>=0.6",
"sphinx-copybutton>=0.5",
"nbsphinx>=0.9",
"pydata-sphinx-theme>=0.15",
"sphinx>=8",
"nbconvert>=7.9",
"myst-parser>=3.0",
"matplotlib>=3.4",
"seaborn>=0.11",
"cartopy>=0.22",
"pooch>=1.6.0",
"ipython>=8.14",
"ipykernel>=6.23",
]
etc = [
"numba>=0.57",
"statsmodels>=0.14.0",
]
io = [
"h5netcdf>=1.0.0",
"netcdf4>=1.5.8",
"zarr>=2.14.0",
]
[project.urls]
homepage = "https://github.com/xarray-contrib/xeofs"
repository = "https://github.com/xarray-contrib/xeofs"
documentation = "https://xeofs.readthedocs.io/en/latest/"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools-scm>=7",
]
[tool.ruff]
target-version = "py311"
[tool.semantic_release]
version_toml = [ "pyproject.toml:project.version" ]
version_source = "tag"
commit_message = "chore(release): v{version}"
build_command = """
python -m pip install build~=0.10.0
python -m 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"]