-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.13 KB
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
[project]
name = "ufs2arco"
dynamic = ["version"]
description = "Tools for converting Unified Forecast System (UFS) output to Analysis Ready, Cloud Optimized (ARCO) format"
authors = [
{name="Timothy Smith", email="[email protected]"},
]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy<2.3",
"xarray",
"cf_xarray",
"cftime",
"netCDF4",
"h5netcdf",
"zarr<3",
"cfgrib",
"bottleneck",
"flox",
"dask[complete]",
"fsspec",
"s3fs",
"gcsfs>=2025.10.0",
]
[project.optional-dependencies]
documentation = [
"jupyter", "nbsphinx", "sphinx-book-theme", "matplotlib",
]
regrid = [
"xesmf",
]
mpi = [
"mpi4py",
]
dev = [
"setuptools_scm>=8", "pytest", "pytest-dependency", "coverage",
]
[project.scripts]
ufs2arco = "ufs2arco.cli:main"
[project.urls]
source="https://github.com/NOAA-PSL/ufs2arco"
documentation="https://ufs2arco.readthedocs.io/en/latest/"
[build-system]
requires = ["setuptools>=64.0.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ufs2arco"]
[tool.setuptools_scm]