-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
93 lines (80 loc) · 2.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "ds-mapaction-ecmwf"
version = "0.1.0"
description = "historical analysis of ECMWF seasonal forecasts"
homepage = "https://github.com/OCHA-DAP/ds-mapaction-ecmwf"
repository = "https://github.com/OCHA-DAP/ds-mapaction-ecmwf"
authors = [
"Tristan Downing <[email protected]>",
"Evangelos Diakatos <[email protected]>",
"Carola Martens <[email protected]>",
"Jiri Klic <[email protected]>"
]
license = "GPL-3.0-only"
readme = "README.md"
keywords = [
"UN-OCHA",
"MapAction",
"Copernicus",
"ECMWF",
"climate",
"forecast"
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.10"
cdsapi = "^0.6.1"
ecmwf-api-client = "^1.6.3"
geopandas = "^0.14.3"
azure-storage-blob = "^12.19.1"
cfgrib = "^0.9.12.0"
ecmwflibs = "^0.6.3"
xarray = "^2024.6.0"
seaborn = "^0.13.2"
scikit-learn = "^1.5.0"
pyarrow = "^16.1.0"
fastparquet = "^2024.5.0"
xesmf = "^0.8.5"
esmpy = {git = "https://github.com/esmf-org/esmf.git", rev = "patch/8.6.1", subdirectory = "src/addon/esmpy"}
nbqa = "^1.8.5"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.1.5"
pre-commit = "^3.7.0"
black = "^24.3.0"
isort = "^5.13.2"
flake8 = "^7.0.0"
pymarkdownlnt = "^0.9.18"
matplotlib = "^3.8.4"
pytest = "^8.1.1"
tabulate = "^0.9.0"
[tool.pytest.ini_options]
pythonpath = [ "src" ]
testpaths = [ "tests" ]
filterwarnings = [
"error",
# use single quotes below to denote "raw" strings in TOML
# ignore DeprecationWarning from cdsapi.api.pkg_resources
'ignore:pkg_resources is deprecated as an API.:DeprecationWarning'
]
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[tool.pymarkdown]
plugins.line-length.enabled = false
plugins.header-increment.enabled = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"