forked from NOAA-OWP/nwm-data-assimilation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (54 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
54 lines (54 loc) · 1.85 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "data_assimilation_engine"
dynamic = ["version"]
description = "Tools for creating both spatial and timeseries visualizations of simulated and observed variables (SWE and soil moisture)."
readme = "README.md"
maintainers = [
{ name = "Kyle Larkin", email = "Kyle.S.Larkin@rtx.com" },
{name = "Matthew Deshotel", email = "mdeshotel@dewberry.com"},
{name = "Miguel Pena", email = "miguel.pena@rtx.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.11",
]
requires-python = "~=3.11"
dependencies = [
"xarray[complete]==2025.12.0",
"matplotlib~=3.10.6",
"cartopy==0.25.0",
# Use the same versions as mswm
"numpy~=1.26.4", # Match ngen-forcing
"scipy==1.16.1",
"geopandas~=1.1.1", # Match ngen-forcing
"shapely~=2.1.2", # Match ngen-forcing
"pandas~=2.3.3", # Match ngen-forcing
# fsspec and s3fs need to be locked together
"fsspec==2026.2.0",
"s3fs==2026.2.0",
"dask[complete]==2025.7.0", # Includes Dask core + recommended dependencies
"distributed==2025.7.0", # Adds support for parallel computing
"requests~=2.32.5",
"ruff==0.12.10",
"python-dotenv~=1.2.1",
"rioxarray==0.19.0",
"boto3==1.42.49",
"earthaccess==0.15.1",
"ujson==5.11.0",
"kerchunk==0.2.9",
"h5py==3.15.1"
]
[project.urls]
repository = "https://github.com/NGWPC/data-assimilation-engine"
[tool.setuptools.packages.find]
where = ["."]
include = ["data_assimilation_engine*"]
[tool.setuptools.dynamic]
version = {attr = "data_assimilation_engine.__version__"}
[tool.ruff]
line-length = 88