This repository was archived by the owner on Jun 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 1.35 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nwm-post-processing"
version = "1.0.5"
dependencies = [
"netCDF4",
"xarray",
"dask",
"pandas",
"geopandas",
"pyproj",
"affine",
"rasterio"
]
description = "Takes National Water Model data, combines the output, and subsets them based on region in order to make model data easier to work with"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Hydrology",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
analysis = [
"fiona",
"requests",
"BeautifulSoup4",
"aiohttp",
"us"
]
[project.scripts]
post-process = "post_processing.__main__:main"
download-input = "scripts.download_input:main"
[project.urls]
Homepage = "https://github.com/NOAA-OWP/nwm-post-processing"
Documentation = "https://github.com/NOAA-OWP/nwm-post-processing"
Repository = "https://github.com/NOAA-OWP/nwm-post-processing"
"Bug Tracker" = "https://github.com/NOAA-OWP/nwm-post-processing/issues"
[tool.setuptools]
packages = ["post_processing", "scripts"]