HBV-Lab 0.2.0__tar.gz → 0.2.1__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.
@@ -22,12 +22,12 @@ from matplotlib.dates import DateFormatter
22
22
  import os
23
23
  import datetime
24
24
  from types import MethodType
25
- from uncertainty import uncertainty
26
- from calibration import calibration
25
+ from .uncertainty import uncertainty
26
+ from .calibration import calibration
27
27
  # from calibration import calibrate_hbv_model
28
28
  # from uncertainty import evaluate_uncertainty
29
- from hbv_step import hbv_step
30
- from routing import route_with_maxbas
29
+ from .hbv_step import hbv_step
30
+ from .routing import route_with_maxbas
31
31
 
32
32
  class HBVModel(uncertainty, calibration):
33
33
  """
@@ -1,6 +1,6 @@
1
- from snow import snow_routine
2
- from soil import soil_routine
3
- from response import response_routine_two_tanks
1
+ from .snow import snow_routine
2
+ from .soil import soil_routine
3
+ from .response import response_routine_two_tanks
4
4
 
5
5
  def hbv_step(precipitation, temperature, potential_et, params, initial_conditions):
6
6
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: HBV_Lab
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: An intuitive, object-oriented and user-friendly Python implementation of a lumped conceptual HBV hydrological model for educational and research purposes.
5
5
  Home-page: https://github.com/abdallaox/HBV_python_implementation
6
6
  Author: Abdalla Mohammed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: HBV_Lab
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: An intuitive, object-oriented and user-friendly Python implementation of a lumped conceptual HBV hydrological model for educational and research purposes.
5
5
  Home-page: https://github.com/abdallaox/HBV_python_implementation
6
6
  Author: Abdalla Mohammed
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as f:
5
5
 
6
6
  setup(
7
7
  name='HBV_Lab',
8
- version='0.2.0',
8
+ version='0.2.1',
9
9
  packages=find_packages(include=['HBV_Lab', 'HBV_Lab.*']),
10
10
  install_requires=[
11
11
  'numpy',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes