forked from NOAA-OWP/ngen-forcing
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (56 loc) · 1.6 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
57
58
59
60
61
62
63
[project]
name = "ngen-forcings"
authors = [
{ name = "Jason Ducker", email = "jason.ducker@noaa.gov" },
{ name = "Kyle Larkin", email = "kyle.s.larkin@rtx.com"},
{ name = "Peter Kronenberg", email = "peter.a.kronenberg@rtx.com"},
{ name = "Jeff Wade", email = "jeff.s.wade@rtx.com"}
]
description = "NextGen Forcings Engine"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
"bmipy",
"bokeh",
"bs4",
"dask",
#"gdal == 3.7.3",
"fiona~=1.10.1",
"geopandas~=1.1.1",
"mpi4py>3.1.4",
"netCDF4==1.6.3",
"numpy~=1.26.4",
"pandas~=2.3.3",
"pyproj>=3.2.0,<4.0.0", # Pin compatible version
"PyYaml~=6.0.2",
"requests",
"ruamel.yaml",
"s3fs",
"scipy",
"shapely~=2.1.2",
"xarray[complete]==2025.12.0",
"zarr",
"rioxarray",
"python-dotenv",
"obstore"
]
dynamic = ["version"]
[project.optional-dependencies]
develop = ["pytest"]
[project.urls]
Repository = "https://github.com/NGWPC/ngen-forcing"
Issues = "https://github.com/NGWPC/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*",
"Forcing_Extraction_Scripts*",
"ESMF_Mesh_Domain_Configuration_Production*"]
namespaces = false
[tool.setuptools.package-data]
"NextGen_Forcings_Engine_BMI" = ["BMI_NextGen_Configs/**/*"]
[tool.setuptools.dynamic]
version = { attr = "NextGen_Forcings_Engine.__version__" }