-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.03 KB
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
[tool.poetry]
name = "xarray-cube"
version = "0.3.1"
description = "xarray extension for spectral cube analysis"
authors = [
"Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>",
"Rin Yamada <yamada@a.phys.nagoya-u.ac.jp>",
"Fumika Demachi <f.demachi@a.phys.nagoya-u.ac.jp>",
"Takeru Nishioka <tnishioka@a.phys.nagoya-u.ac.jp>",
"Kaoru Nishikawa <k.nishikawa@a.phys.nagoya-u.ac.jp>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/a-lab-nagoya/xarray-cube/"
documentation = "https://a-lab-nagoya.github.io/xarray-cube/"
[tool.poetry.dependencies]
python = ">=3.7.1, <3.10"
astropy = "^4.3"
numpy = "^1.21"
spectral-cube = ">=0.6, <0.7"
typing-extensions = "^3.10"
xarray = ">=0.18, <0.30"
xarray-dataclasses = "^1.0"
[tool.poetry.dev-dependencies]
black = "^22.1"
ipykernel = "^6.9"
ipython = "^7.32"
matplotlib = "^3.5"
myst-parser = "^0.17"
netcdf4 = "^1.5"
pydata-sphinx-theme = "^0.8"
pytest = "^7.0"
sphinx = "^4.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"