-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
60 lines (54 loc) · 1.47 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
[tool.poetry]
name = "xrscipy"
version = "2.1.0"
authors = ["xarray Developers <xarray@googlegroups.com>"]
license = "Apache"
description = "Scipy integrated into xarray"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
readme = "README.md"
repository = "https://github.com/hippalectryon-0/xr-scipy"
documentation = "https://xr-scipy.readthedocs.io"
[tool.poetry.dependencies]
python = ">=3.9,<4"
xarray = ">=2023"
scipy = ">=1.9"
docstring-parser = "^0.15"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.0.0"
flake8 = "^6.0.0"
sphinx = "^6.0.0"
sphinx-rtd-theme = "^1.3.0"
pre-commit = "^3.3.1"
isort = "5.12.0"
black = "24.3.0"
ipython = "^8.13.2"
matplotlib = "^3.7.0" # used in docs
myst-parser = "1.0.0" # used in docs
pickleshare = "^0.7.5"
pycln = "^2.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# pre-commit config
[tool.black]
line-length = 120
[tool.pycln]
all = true
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
split_on_trailing_comma = true