-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
46 lines (42 loc) · 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
[project]
name = "ufs2arco"
version = "0.2.0"
description = "Tools for converting Unified Forecast System (UFS) output to Analysis Ready, Cloud Optimized (ARCO) format"
authors = [
{name="Timothy Smith", email="[email protected]"},
{name="Daniel Abdi"},
{name="Mariah Pope"},
{name="Lauryn Eldridge"},
{name="Ken Witt"},
]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy",
"matplotlib",
"xarray",
"netCDF4",
"h5netcdf",
"bottleneck",
"dask[complete]",
"zarr",
"cftime",
"fsspec",
"s3fs",
"gcsfs",
"pytest",
"coverage",
]
[project.optional-dependencies]
documentation = [
"jupyter", "nbsphinx", "sphinx-book-theme",
]
[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"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ufs2arco"]