forked from NCAR/metric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.1 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools-scm>=7",
]
[tool.setuptools]
packages = ["metric"]
[project]
name = "metric"
description = "METRIC is a fork of the RapidMoc package, which extends the calculation of observation-style transports to other observing arrays."
requires-python = ">=3.10"
keywords = ["AMOC", "oceanography", "modelling", "analysis", "data"]
authors = [{email = "[email protected]"},{name = "Ollie Tooth"}]
maintainers = [{name = "Ollie Tooth", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research"
]
dependencies = [
"argparse",
"ConfigParser",
"scipy",
"matplotlib",
"netcdf4",
"dask[complete]>=2024.10.0",
"gsw>=3.6.19",
"h5netcdf>=1.4.0",
"xarray[io,accel,viz]>=2024.10.0",
"numpy>=1.26.4",
"zarr>=2.18.3",
]
dynamic = ["version"]
[project.readme]
file = "README.rst"
content-type = "text/rst"
[project.license]
file = "LICENSE.txt"
content-type = "text/txt"
[project.urls]
repository = "https://github.com/oj-tooth/metric"