hspf 2.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.
Files changed (36) hide show
  1. hspf-2.0.0/.gitattributes +2 -0
  2. hspf-2.0.0/.gitignore +1 -0
  3. hspf-2.0.0/MANIFEST.in +0 -0
  4. hspf-2.0.0/PKG-INFO +19 -0
  5. hspf-2.0.0/pyproject.toml +32 -0
  6. hspf-2.0.0/src/hspf/__init__.py +0 -0
  7. hspf-2.0.0/src/hspf/data/ParseTable.csv +2541 -0
  8. hspf-2.0.0/src/hspf/data/Timeseries Catalog/IMPLND/IQUAL.txt +10 -0
  9. hspf-2.0.0/src/hspf/data/Timeseries Catalog/IMPLND/IWATER.txt +9 -0
  10. hspf-2.0.0/src/hspf/data/Timeseries Catalog/IMPLND/IWTGAS.txt +6 -0
  11. hspf-2.0.0/src/hspf/data/Timeseries Catalog/IMPLND/SOLIDS.txt +2 -0
  12. hspf-2.0.0/src/hspf/data/Timeseries Catalog/PERLND/MSTLAY.txt +2 -0
  13. hspf-2.0.0/src/hspf/data/Timeseries Catalog/PERLND/PQUAL.txt +19 -0
  14. hspf-2.0.0/src/hspf/data/Timeseries Catalog/PERLND/PSTEMP.txt +4 -0
  15. hspf-2.0.0/src/hspf/data/Timeseries Catalog/PERLND/PWATER.txt +39 -0
  16. hspf-2.0.0/src/hspf/data/Timeseries Catalog/PERLND/PWATGAS.txt +21 -0
  17. hspf-2.0.0/src/hspf/data/Timeseries Catalog/PERLND/SEDMNT.txt +8 -0
  18. hspf-2.0.0/src/hspf/data/Timeseries Catalog/PERLND/SNOW.txt +22 -0
  19. hspf-2.0.0/src/hspf/data/Timeseries Catalog/RCHRES/CONS.txt +7 -0
  20. hspf-2.0.0/src/hspf/data/Timeseries Catalog/RCHRES/GQUAL.txt +22 -0
  21. hspf-2.0.0/src/hspf/data/Timeseries Catalog/RCHRES/HTRCH.txt +8 -0
  22. hspf-2.0.0/src/hspf/data/Timeseries Catalog/RCHRES/HYDR.txt +27 -0
  23. hspf-2.0.0/src/hspf/data/Timeseries Catalog/RCHRES/NUTRX.txt +50 -0
  24. hspf-2.0.0/src/hspf/data/Timeseries Catalog/RCHRES/OXRX.txt +8 -0
  25. hspf-2.0.0/src/hspf/data/Timeseries Catalog/RCHRES/PLANK.txt +24 -0
  26. hspf-2.0.0/src/hspf/data/Timeseries Catalog/RCHRES/SEDTRN.txt +8 -0
  27. hspf-2.0.0/src/hspf/hbn.py +487 -0
  28. hspf-2.0.0/src/hspf/helpers.py +94 -0
  29. hspf-2.0.0/src/hspf/hspfModel.py +203 -0
  30. hspf-2.0.0/src/hspf/parser/__init__.py +6 -0
  31. hspf-2.0.0/src/hspf/parser/graph.py +934 -0
  32. hspf-2.0.0/src/hspf/parser/parsers.py +516 -0
  33. hspf-2.0.0/src/hspf/reports.py +1230 -0
  34. hspf-2.0.0/src/hspf/uci.py +643 -0
  35. hspf-2.0.0/src/hspf/wdm.py +355 -0
  36. hspf-2.0.0/src/hspf/wdmReader.py +588 -0
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
hspf-2.0.0/.gitignore ADDED
@@ -0,0 +1 @@
1
+ *.pyc
hspf-2.0.0/MANIFEST.in ADDED
File without changes
hspf-2.0.0/PKG-INFO ADDED
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: hspf
3
+ Version: 2.0.0
4
+ Summary: Python package for downloading and running HSPF models
5
+ Project-URL: Homepage, https://github.com/mfratkin1/pyHSPF
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: networkx
14
+ Requires-Dist: numba
15
+ Requires-Dist: numpy
16
+ Requires-Dist: pandas
17
+ Requires-Dist: pathlib
18
+ Requires-Dist: requests
19
+ Requires-Dist: tables
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "hspf"
7
+ urls = { "Homepage" = "https://github.com/mfratkin1/pyHSPF" } # ? Add this!
8
+ version = "2.0.0"
9
+ dependencies = [
10
+ "pandas",
11
+ "requests",
12
+ "pathlib",
13
+ "networkx",
14
+ "numba",
15
+ "tables",
16
+ "numpy"
17
+ ]
18
+ requires-python = ">=3.8"
19
+ authors = [
20
+ {name = "Mulu Fratkin", email = "michael.fratkin@state.mn.us"},
21
+ ]
22
+ maintainers = [
23
+ {name = "Mulu Fratkin", email = "michael.fratkin@state.mn.us"},
24
+ ]
25
+ description = "Python package for downloading and running HSPF models"
26
+ license = "MIT"
27
+ license-files = ["LICEN[CS]E.*"]
28
+ keywords = ["HSPF","Hydrology"]
29
+ classifiers = [
30
+ "Development Status :: 3 - Alpha",
31
+ "Programming Language :: Python"
32
+ ]
File without changes