-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
43 lines (39 loc) · 1.24 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
[tool.poetry]
name = "xarray-dataclasses"
version = "1.8.0"
description = "xarray data creation by data classes"
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
keywords = ["xarray", "dataclass", "dataarray", "dataset", "typing"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/astropenguin/xarray-dataclasses/"
repository = "https://github.com/astropenguin/xarray-dataclasses/"
documentation = "https://astropenguin.github.io/xarray-dataclasses/"
[tool.poetry.dependencies]
python = ">=3.8, <3.13"
numpy = [
{ version = ">=1.22, <1.25", python = ">=3.8, <3.9" },
{ version = "^1.22", python = ">=3.9, <3.13" },
]
typing-extensions = "^4.0"
xarray = [
{ version = ">=2022.3, <2023.2", python = ">=3.8, <3.9" },
{ version = ">=2022.3, <2025.0", python = ">=3.9, <3.13" },
]
[tool.poetry.group.dev.dependencies]
black = "^24.4"
ipython = "^8.12"
myst-parser = "^3.0"
pydata-sphinx-theme = "^0.14"
pyright = "^1.1"
pytest = "^8.2"
sphinx = "^7.1"
[tool.pyright]
reportImportCycles = "warning"
reportUnknownArgumentType = "warning"
reportUnknownMemberType = "warning"
reportUnknownVariableType = "warning"
typeCheckingMode = "strict"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"