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.
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
@@ -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
+ ]
@@ -0,0 +1,7 @@
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ Created on Thu Dec 9 10:39:01 2021
4
+
5
+ @author: mfratki
6
+ """
7
+