-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
45 lines (41 loc) · 1.45 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
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=70"]
build-backend = "setuptools.build_meta"
[project]
name = "hydrotools"
authors = [
{ name = "Jason A. Regina", email = "[email protected]" },
{ name = "Austin Raney", email = "[email protected]" },
]
description = "Suite of tools for retrieving USGS NWIS observations and evaluating National Water Model (NWM) data."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Hydrology",
"Operating System :: OS Independent",
]
dependencies = [
"hydrotools.nwis_client==4.0.0",
"hydrotools.nwm_client==9.0.0",
"hydrotools.events==2.0.0",
"hydrotools.metrics==2.0.0",
"hydrotools.svi_client==1.0.0"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "hydrotools._version.__version__" }
[project.optional-dependencies]
develop = ["pytest"]
[project.urls]
Homepage = "https://github.com/NOAA-OWP/hydrotools"
Documentation = "https://noaa-owp.github.io/hydrotools"
Repository = "https://github.com/NOAA-OWP/hydrotools"
"Bug Tracker" = "https://github.com/NOAA-OWP/hydrotools/issues"