-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (58 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ECmean4"
dynamic = ["version"]
authors = [
{ name="Paolo Davini", email="p.davini@isac.cnr.it" },
{ name="Jost von Hardenberg", email="jost.hardenberg@polito.it" }
]
description = "ECmean4 Global Climate Model lightweight evaluation tool"
readme = "README.md"
requires-python = ">=3.9,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"xarray",
"numpy",
"netcdf4",
"numba",
"dask",
"esmpy",
"xesmf",
"metpy",
"matplotlib",
"tabulate",
"cfgrib",
"seaborn"
]
[project.optional-dependencies]
tests = [
"coverage",
"coveralls",
"pytest"
]
docs = [
"sphinx<7.0",
"sphinx-rtd-theme"
]
all = [
"ECmean4[tests,docs]"
]
[project.urls]
"Homepage" = "https://github.com/oloapinivad/ECmean4"
"Repository" = "https://github.com/oloapinivad/ECmean4"
"Documentation" = "https://ecmean4.readthedocs.io/en/latest/"
"Bug Tracker" = "https://github.com/oloapinivad/ECmean4/issues"
[project.scripts]
global_mean = "ecmean.global_mean:gm_entry_point"
performance_indices = "ecmean.performance_indices:pi_entry_point"
[tool.setuptools.dynamic]
version = {attr = "ecmean.__version__"}
[tool.coverage.run]
concurrency = ["multiprocessing"]