forked from metno/noresm-aerocom-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 722 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (26 loc) · 722 Bytes
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
[tool.poetry]
name = "noresm-aerocom-converter"
version = "0.6.0"
description = "A small conversion tool, that converts NorESM modeldata to Aerocom3 data"
authors = ["Daniel Heinesen <danielh@met.no>"]
readme = "README.md"
packages = [{ include = "noresm_aerocom_converter" }]
[tool.poetry.dependencies]
numpy = ">=1.24.4, <2.0.0"
python = "^3.10"
typer = ">=0.19.2"
rich = "^13.7.1"
pathlib = "^1.0.1"
xarray = ">=2022.12.0"
netcdf4 = "^1.6.5"
dask = ">=2024.2.1"
pyyaml = "^6.0.1"
cftime = "^1.6.3"
[tool.poetry.dev-dependencies]
black = "^24.2.0"
pytest = "^8.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
nac = "noresm_aerocom_converter.main:app"