pyhcal 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyhcal-1.0.0/.gitattributes +2 -0
- pyhcal-1.0.0/.gitignore +1 -0
- pyhcal-1.0.0/PKG-INFO +15 -0
- pyhcal-1.0.0/pyproject.toml +28 -0
- pyhcal-1.0.0/src/pyhcal/__init__.py +7 -0
- pyhcal-1.0.0/src/pyhcal/calibrators.py +642 -0
- pyhcal-1.0.0/src/pyhcal/data/HUC_Names.csv +84 -0
- pyhcal-1.0.0/src/pyhcal/data/WISKI_EQUIS_XREF.csv +25789 -0
- pyhcal-1.0.0/src/pyhcal/data/stations_EQUIS.gpkg +0 -0
- pyhcal-1.0.0/src/pyhcal/data/stations_wiski.gpkg +0 -0
- pyhcal-1.0.0/src/pyhcal/figures.py +1024 -0
- pyhcal-1.0.0/src/pyhcal/metrics.py +485 -0
- pyhcal-1.0.0/src/pyhcal/modl_db.py +97 -0
- pyhcal-1.0.0/src/pyhcal/repository.py +98 -0
- pyhcal-1.0.0/src/pyhcal/setup_utils.py +573 -0
pyhcal-1.0.0/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.pyc
|
pyhcal-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyhcal
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Python package for calibrating MPCA HSPF models
|
|
5
|
+
Project-URL: Homepage, https://github.com/mfratkin1/pyhcal
|
|
6
|
+
Author-email: Mulu Fratkin <michael.fratkin@state.mn.us>
|
|
7
|
+
Maintainer-email: Mulu Fratkin <michael.fratkin@state.mn.us>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Keywords: HSPF,Hydrology
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Programming Language :: Python
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Requires-Dist: geopandas
|
|
14
|
+
Requires-Dist: hspf
|
|
15
|
+
Requires-Dist: mpcahydro
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pyhcal"
|
|
7
|
+
urls = { "Homepage" = "https://github.com/mfratkin1/pyhcal" } # ? Add this!
|
|
8
|
+
version = "1.0.0"
|
|
9
|
+
dependencies = [
|
|
10
|
+
"hspf",
|
|
11
|
+
"mpcaHydro",
|
|
12
|
+
"geopandas"
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.8"
|
|
15
|
+
authors = [
|
|
16
|
+
{name = "Mulu Fratkin", email = "michael.fratkin@state.mn.us"},
|
|
17
|
+
]
|
|
18
|
+
maintainers = [
|
|
19
|
+
{name = "Mulu Fratkin", email = "michael.fratkin@state.mn.us"},
|
|
20
|
+
]
|
|
21
|
+
description = "Python package for calibrating MPCA HSPF models"
|
|
22
|
+
license = "MIT"
|
|
23
|
+
license-files = ["LICEN[CS]E.*"]
|
|
24
|
+
keywords = ["HSPF","Hydrology"]
|
|
25
|
+
classifiers = [
|
|
26
|
+
"Development Status :: 3 - Alpha",
|
|
27
|
+
"Programming Language :: Python"
|
|
28
|
+
]
|