-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 906 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
[tool.poetry]
name = "xarray-units"
version = "0.5.0"
description = "xarray extension for handling units"
authors = ["Akio Taniguchi <[email protected]>"]
documentation = "https://astropenguin.github.io/xarray-units/"
homepage = "https://github.com/astropenguin/xarray-units/"
keywords = ["xarray", "xarray-accessor", "xarray-extension", "units"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
astropy = ">=5.2, <7.0"
typing-extensions = "^4.1"
xarray = ">=2022.3, <2024.0"
[tool.poetry.group.dev.dependencies]
black = "^24.1"
ipython = "^8.18"
myst-parser = "^2.0"
pydata-sphinx-theme = "^0.14"
pyright = "^1.1"
pytest = "^7.4"
sphinx = "^7.2"
[tool.pyright]
typeCheckingMode = "strict"
reportMissingTypeStubs = "warning"
reportUnnecessaryIsInstance = "warning"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"