-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,41 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel", | ||
"pip" | ||
] | ||
requires = ["setuptools>=61"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "hydrotools.metrics" | ||
authors = [ | ||
{name = "Jason A. Regina", email = "[email protected]"}, | ||
] | ||
description = "Variety of standard model evaluation metrics." | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
license = {file = "LICENSE"} | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Science/Research", | ||
"License :: Free To Use But Restricted", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Scientific/Engineering :: Hydrology", | ||
"Operating System :: OS Independent" | ||
] | ||
dependencies = [ | ||
"numpy>=1.20.0", | ||
"pandas", | ||
] | ||
dynamic = ["version"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "hydrotools.metrics._version.__version__"} | ||
|
||
[project.optional-dependencies] | ||
develop = ["pytest"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/NOAA-OWP/hydrotools" | ||
Documentation = "https://noaa-owp.github.io/hydrotools/hydrotools.metrics.html" | ||
Repository = "https://github.com/NOAA-OWP/hydrotools/tree/main/python/metrics" | ||
"Bug Tracker" = "https://github.com/NOAA-OWP/hydrotools/issues" |
This file was deleted.
Oops, something went wrong.