forked from geoglows/geoglows_ecflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.01 KB
/
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
[project]
name = "geoglows_ecflow"
version = "3.0.3"
description = "ECFLOW RAPID workflow for GEOGloWS"
authors = [
{ name = "Michael Souffront", email = "[email protected]" },
{ name = "Riley Hales", email = "[email protected]" },
]
dependencies = [
"pyyaml>=6.0.1",
"numpy>=1.25.2",
"netcdf4>=1.6.4",
"dask>=2023.9.2",
"pandas>=2.1.0",
"xarray>=2023.8.0",
"fastparquet>=2023.8.0",
"zarr>=2.16.1",
"boto3>=1.28.65",
"basininflow>=0.13.0",
# "RAPIDpy>=2.7.0", # Install from BYU Hydroinformatics GitHub account
# "ecflow>=5.11.3", # Install with conda
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "BSD-3-Clause" }
[project.optional-dependencies]
test = ["pytest>=7.4.2", "pytest-mock>=3.11.1", "pytest-cov>=4.1.0"]
[tool.coverage.report]
show_missing = true
[tool.setuptools.packages.find]
include = ["geoglows_ecflow*"]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"