generated from NOAA-OWP/owp-open-source-project-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
40 lines (36 loc) · 938 Bytes
/
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
[project]
name = "ngen-forcings"
authors = [
{ name = "Jason Ducker", email = "[email protected]" }
]
description = "NextGen Forcings Engine"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">= 3.8"
dependencies = [
"bmipy",
"bokeh",
"pandas>=1.15",
"netCDF4",
"scipy",
"dask",
"zarr",
"s3fs",
"xarray",
"mpi4py>=3.1.4",
"esmpy>=8.1.0",
"numpy>=1.20.1"
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/NOAA-OWP/ngen-forcing"
Issues = "https://github.com/NOAA-OWP/ngen-forcing/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["NextGen_Forcings_Engine_BMI"]
include = ["NextGen_Forcings_Engine*"]
namespaces = false
[tool.setuptools.dynamic]
version = { attr = "NextGen_Forcings_Engine.__version__" }