-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 834 Bytes
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
[project]
name = "forcingprocessor"
version = "0.1.0"
description = "Tool to convert nwm forcing netcdfs to ngen compatible files"
readme = "README.md"
authors = [
{ name = "Jordan J. Laser", email = "[email protected]" }
]
requires-python = ">=3.11"
dependencies = [
"boto3",
"cftime",
"dask",
"exactextract",
"gcsfs",
"geopandas",
"imageio",
"matplotlib",
"netCDF4",
"h5netcdf",
"h5py",
"nwmurl==1.0.1",
"pandas",
"psutil",
"pyarrow",
"pyogrio",
"requests",
"s3fs",
"scipy",
"xarray",
]
[project.optional-dependencies]
develop = ["pytest"]
[project.scripts]
forcingprocessor = "forcingprocessor.processor:main"
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]