-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
40 lines (36 loc) · 972 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
35
36
37
38
39
40
[tool.poetry]
name = "ndradex"
version = "0.3.1"
description = " Multidimensional grid RADEX calculator"
authors = ["Akio Taniguchi <[email protected]>"]
keywords = ["astronomy", "radio-astronomy", "radex", "xarray"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/astropenguin/ndradex/"
documentation = "https://astropenguin.github.io/ndradex/"
[tool.poetry.dependencies]
python = ">=3.9, <3.12"
astropy = "^5.0"
astroquery = "^0.4"
netcdf4 = "^1.6"
numpy = "^1.22"
pandas = "^1.5 | ^2.0"
pandas-stubs = "^1.5 | ^2.0"
requests-cache = "^1.0"
tomlkit = "^0.11"
tqdm = "^4.60"
typing-extensions = "^4.0"
xarray = "^2022.1 | ^2023.1"
xarray-dataclasses = "^1.6"
[tool.poetry.dev-dependencies]
black = "^23.3"
ipython = "^8.14"
myst-parser = "^1.0"
pydata-sphinx-theme = "^0.13"
pytest = "^7.3"
sphinx = "^6.2"
[tool.pyright]
typeCheckingMode = "basic"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"