wolfhece 2.1.34__py3-none-any.whl → 2.1.36__py3-none-any.whl

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.
wolfhece/GraphProfile.py CHANGED
@@ -15,8 +15,8 @@ import wx
15
15
  import wx.lib.agw.aui as aui
16
16
  import copy
17
17
  from shapely.geometry import LineString,Point
18
- from matplotlib import figure as mplfig
19
- from matplotlib import axes as mplax
18
+ from matplotlib.figure import Figure
19
+ from matplotlib.axis import Axis
20
20
  import matplotlib.pyplot as plt
21
21
  from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas, NavigationToolbar2WxAgg as NavigationToolbar
22
22
  from wx.grid import Grid
@@ -37,7 +37,7 @@ class ProfilePanel(wx.Panel):
37
37
  """
38
38
  A wx.panel on which the matplolib figure is displayed.
39
39
  """
40
- figure: mplfig.Figure
40
+ figure: Figure
41
41
 
42
42
  def __init__(self, parent, id =-1, dpi= None, toolbar = True, **kwargs):
43
43
 
@@ -47,7 +47,7 @@ class ProfilePanel(wx.Panel):
47
47
 
48
48
  #Figure
49
49
  if self.wx_exists:
50
- self.figure = mplfig.Figure(dpi = dpi, figsize=(8,4))
50
+ self.figure = Figure(dpi = dpi, figsize=(8,4))
51
51
  else:
52
52
  self.figure = plt.figure(dpi = dpi, figsize=(15,10)) # FIXME not exactly the same than mplfig.Figure, probably rendering machine
53
53
 
@@ -97,7 +97,7 @@ class ProfilePanel(wx.Panel):
97
97
 
98
98
  return self.ax_cs_real, self.ax_img, self.ax_dis, self.ax_hsw
99
99
 
100
- def get_fig_ax(self) -> list((mplfig.Figure, mplax, mplax, mplax, mplax, mplax)):
100
+ def get_fig_ax(self) -> tuple[Figure, Axis, Axis, Axis, Axis, Axis]:
101
101
  """
102
102
  This method returns the active axes of the matplotlib figure.
103
103
  """
@@ -969,7 +969,7 @@ class PlotCSAll(ProfilePanel):
969
969
  self.plot_hspw()
970
970
  self.plot_cs()
971
971
 
972
- def plot_profile(self, figax:tuple([mplfig.Figure, mplax.Axes]) = None):
972
+ def plot_profile(self, figax:tuple[Figure, Axis] = None):
973
973
  """
974
974
  This method plots the geometric profiles on the first and third graph.
975
975
  The third graph is anamorphosed to allow comparisons with other graphs using the same scale.
@@ -1039,7 +1039,7 @@ class PlotCSAll(ProfilePanel):
1039
1039
  if self.wx_exists:
1040
1040
  leg4.set_draggable(True)
1041
1041
 
1042
- def plot_discharge(self, figax:tuple([mplfig.Figure, mplax.Axes]) = None):
1042
+ def plot_discharge(self, figax:tuple[Figure, Axis] = None):
1043
1043
  """
1044
1044
  This method plots the discharge relationships of the active profile on the 5th axis of the matplotlib figure.
1045
1045
  """
@@ -1069,7 +1069,7 @@ class PlotCSAll(ProfilePanel):
1069
1069
  if self.wx_exists:
1070
1070
  leg5.set_draggable(True)
1071
1071
 
1072
- def plot_hspw(self, figax:tuple([mplfig.Figure, mplax.Axes]) = None):
1072
+ def plot_hspw(self, figax:tuple[Figure, Axis] = None):
1073
1073
  """
1074
1074
  The methods plots the hydraulic radius - H, the wetted area - S, the wetted perimeter - P and top width - W on sixth axis and last graph of the figure.
1075
1075
  """
wolfhece/apps/version.py CHANGED
@@ -5,7 +5,7 @@ class WolfVersion():
5
5
 
6
6
  self.major = 2
7
7
  self.minor = 1
8
- self.patch = 34
8
+ self.patch = 36
9
9
 
10
10
  def __str__(self):
11
11
 
wolfhece/cli.py CHANGED
@@ -13,6 +13,24 @@ def check():
13
13
  from .apps.check_install import main
14
14
  main()
15
15
 
16
+ def license():
17
+ """ Main wolf application : License """
18
+ from .libs.wolfogl import request_license
19
+ from pathlib import Path
20
+
21
+ if Path(__file__).parent / 'license' / 'wolf.lic':
22
+ print('License file found -- Regenerate !')
23
+
24
+ email = ''
25
+ while not '@' in email:
26
+ email = input('Enter your email and press enter : ')
27
+
28
+ request_license(email)
29
+ if Path(__file__).parent / 'license' / 'wolf.lic':
30
+ print('Done !')
31
+ else:
32
+ print('Error ! - Please retry. If the error persists, contact the support.')
33
+
16
34
  def accept():
17
35
  """ Main wolf application : Accept """
18
36
  from .acceptability.cli import main
@@ -419,10 +419,10 @@ class Comparison:
419
419
  tzPlot = plotDict["General Parameters"]["Time Zone Plot"]
420
420
  tzDelta = datetime.timedelta(hours=tzPlot)
421
421
 
422
- # if(envelop and not("Ref Name" in plotDict["General Parameters"])):
423
- # refName = "Catchment 1"
424
- # else:
425
- # refName = plotDict["General Parameters"]["Ref Name"]
422
+ if(envelop and not("Ref Name" in plotDict["General Parameters"])):
423
+ refName = "Catchment 1"
424
+ else:
425
+ refName = plotDict["General Parameters"]["Ref Name"]
426
426
 
427
427
  if(not("Add Table" in plotDict["General Parameters"])):
428
428
  addTable = False
@@ -1076,10 +1076,13 @@ class Comparison:
1076
1076
  tzPlot = plotDict["General Parameters"]["Time Zone Plot"]
1077
1077
  tzDelta = datetime.timedelta(hours=tzPlot)
1078
1078
 
1079
- # if(envelop and not("Ref Name" in plotDict["General Parameters"])):
1080
- # refName = "Catchment 1"
1081
- # else:
1082
- # refName = plotDict["General Parameters"]["Ref Name"]
1079
+ #******************************************************
1080
+ #FIXME : is it correct ??
1081
+ if(envelop and not("Ref Name" in plotDict["General Parameters"])):
1082
+ refName = "Catchment 1"
1083
+ else:
1084
+ refName = plotDict["General Parameters"]["Ref Name"]
1085
+ #******************************************************
1083
1086
 
1084
1087
  if(not("Add Table" in plotDict["General Parameters"])):
1085
1088
  addTable = False
@@ -25,10 +25,7 @@ from tabulate import tabulate
25
25
  import logging
26
26
  logger = logging.getLogger(__name__)
27
27
 
28
- try:
29
- basestring
30
- except NameError:
31
- basestring = str
28
+ basestring = str
32
29
 
33
30
  class KIWISError(Exception):
34
31
  """
@@ -12,6 +12,7 @@ from wolfhece.lagrangian.velocity_field import Velocity_Field, Velocity_Field_nu
12
12
 
13
13
  import numpy as np
14
14
  from numba import jit
15
+ from typing import Union, Literal
15
16
 
16
17
  @jit(nopython=True)
17
18
  def advection_xy(start_x:np.ndarray,
@@ -20,7 +21,7 @@ def advection_xy(start_x:np.ndarray,
20
21
  end_y:np.ndarray,
21
22
  uv_field:Velocity_Field_numba,
22
23
  dt:float,
23
- scheme:['Euler_expl', 'RK22', 'RK4', 'RK45']) -> float:
24
+ scheme:Literal['Euler_expl', 'RK22', 'RK4', 'RK45']) -> float:
24
25
  """
25
26
  Update the position of the particles.
26
27
  """
@@ -122,7 +123,7 @@ def advection_xy_2fields(start_x:np.ndarray,
122
123
  uv_fields:Velocity_2Fields_numba,
123
124
  current_time:float,
124
125
  dt:float,
125
- scheme:['Euler_expl', 'RK22', 'RK4', 'RK45']) -> float:
126
+ scheme:Literal['Euler_expl', 'RK22', 'RK4', 'RK45']) -> float:
126
127
  """
127
128
  Update the position of the particles.
128
129
  """
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wolfhece
3
- Version: 2.1.34
3
+ Version: 2.1.36
4
4
  Author-email: Pierre Archambeau <pierre.archambeau@uliege.be>
5
5
  License: Copyright (c) 2024 University of Liege. All rights reserved.
6
6
  Project-URL: Homepage, https://uee.uliege.be/hece
@@ -13,6 +13,7 @@ Classifier: Topic :: Scientific/Engineering :: Physics
13
13
  Requires-Python: <3.11,>=3.10
14
14
  Description-Content-Type: text/markdown
15
15
  Requires-Dist: wxpython
16
+ Requires-Dist: scikit-learn
16
17
  Requires-Dist: cryptography
17
18
  Requires-Dist: jax
18
19
  Requires-Dist: triangle
@@ -1,6 +1,6 @@
1
1
  wolfhece/CpGrid.py,sha256=ke4n1khTUoed2asJl1GR25PsEkI4TpiBDCo4u0aSo9M,10658
2
2
  wolfhece/GraphNotebook.py,sha256=V1_Ak4F_hoIpKm2GAakuyKOALhujjIXB5FwzFHtM5-8,28021
3
- wolfhece/GraphProfile.py,sha256=aGceovpE2NkMzcn4eGUVPt5SqX__BqMuXaWo2LGhoII,69735
3
+ wolfhece/GraphProfile.py,sha256=OCgJo0YFFBI6H1z-5egJsOOoWF_iziiza0-bbPejNMc,69656
4
4
  wolfhece/Lidar2002.py,sha256=bX-nIzdpjD7rOfEgJpTeaW6rIdAXwDp_z4YTM9CgANY,6068
5
5
  wolfhece/ManageParams.py,sha256=EeuUI5Vvh9ixCvYf8YShMC1s1Yacc7OxOCN7q81gqiQ,517
6
6
  wolfhece/Model1D.py,sha256=uL1DJVmDI2xVSE7H6n3icn3QbsPtTHeg8E-6wkDloKw,476914
@@ -24,7 +24,7 @@ wolfhece/ReadDataDCENN.py,sha256=vm-I4YMryvRldjXTvRYEUCxZsjb_tM7U9yj6OaPyD0k,153
24
24
  wolfhece/Results2DGPU.py,sha256=P42XCqKQVFMkUt6ZTbNeIT7CV6aRqAIcBQLmRbsj4Cs,23336
25
25
  wolfhece/__init__.py,sha256=FRDE8PiJAWxX9PMXsShRMZ8YADAY4WIgKMRh52rmhiw,23
26
26
  wolfhece/_add_path.py,sha256=nudniS-lsgHwXXq5o626XRDzIeYj76GoGKYt6lcu2Nc,616
27
- wolfhece/cli.py,sha256=LyALn5YDSzg6m2d9GEd3X1HSEQ7htEVNsNh0HGC8t-U,2347
27
+ wolfhece/cli.py,sha256=3S1Hbp2tOl51LwLcloAm1DqV9QuUWJx_Ui_vdKNtGxo,2915
28
28
  wolfhece/color_constants.py,sha256=Snc5RX11Ydi756EkBp_83C7DiAQ_Z1aHD9jFIBsosAU,37121
29
29
  wolfhece/drawing_obj.py,sha256=znIQY8dkYhnmoq3mEsVkVzd-hSKDbFY6i8TV-Tf37jM,4040
30
30
  wolfhece/flow_SPWMI.py,sha256=XDAelwAY-3rYOR0WKW3fgYJ_r8DU4IP6Y5xULW421tk,20956
@@ -71,7 +71,7 @@ wolfhece/apps/check_install.py,sha256=icFpkjfwNGDX-0NZVa-ijrCrqmGHEKDiFphjN8uTyh
71
71
  wolfhece/apps/curvedigitizer.py,sha256=_hRR2PWow7PU7rTHIbc6ykZ08tCXcK9uy7RFrb4EKkE,5196
72
72
  wolfhece/apps/isocurrent.py,sha256=MuwTodHxdc6PrqNpphR2ntYf1NLL2n9klTPndGrOHDQ,4109
73
73
  wolfhece/apps/splashscreen.py,sha256=2o1NRxs48BC8m0XCbDgWmWxWDddDXaCtZ-lSnU-cSkM,2922
74
- wolfhece/apps/version.py,sha256=mbAbt8tRPNax-w_wdVAZ2qWb08NGlMwMEIrZ62J4IRw,388
74
+ wolfhece/apps/version.py,sha256=b4QUjeosMLU1tdLlu7uvGlp3GeubVH8VFCVliut20o0,388
75
75
  wolfhece/apps/wolf.py,sha256=mM6Tyi4DlKQILmO49cDUCip9fYVy-hLXkY3YhZgIeUQ,591
76
76
  wolfhece/apps/wolf2D.py,sha256=yPQGee7fsegoQ8GfWKrWEjX1Az_ApL-UWlBiqPvaIyY,565
77
77
  wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
@@ -104,7 +104,7 @@ wolfhece/fonts/sanserif.ttf,sha256=Nvv5eMgTl5-bWgV37B7E1-vZpAZPNJwjtJSzMNDrl9A,4
104
104
  wolfhece/ftp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
105
  wolfhece/ftp/downloader.py,sha256=NANzxSzdcp25dFMYin5QA9UnFexNe6-W2AqqTzUE4f4,5223
106
106
  wolfhece/hydrology/Catchment.py,sha256=uBNzw2Um3_2TZTo2nlMeKmq50IVTf5GPt-SLwRaEOpA,139369
107
- wolfhece/hydrology/Comparison.py,sha256=vz6JwzQyJUGePXDYYNReOMmnmfivlsm4x_FcveXFgIE,84128
107
+ wolfhece/hydrology/Comparison.py,sha256=_2YU9P-AHKnP67sVJWCc6HpnZw9cYBHKjuUGULggICo,84277
108
108
  wolfhece/hydrology/Dumping.py,sha256=SHGYXr30nMOGPSLArMvAzVxGyLywLf4i267166oUHhQ,2403
109
109
  wolfhece/hydrology/Optimisation.py,sha256=GJj0VfG_AVNmyrzyML-FadQg8GAiCh3Mnm9UQMZI-Mg,142538
110
110
  wolfhece/hydrology/Outlet.py,sha256=jdjYN2gIolQJ5prf1wVfxm7cp_YguwQ0JMRsC9ks-Tg,10519
@@ -125,7 +125,7 @@ wolfhece/hydrometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
125
125
  wolfhece/hydrometry/kiwis.py,sha256=KHRfYrtd5hwxKxdChbkTXYH-cDSDcaQJFTEgjrnVMg4,34929
126
126
  wolfhece/hydrometry/kiwis_gui.py,sha256=lApsSeBMJNAR1yocggdoHwz_xe6M_oaZ_E13CfHAlQA,23124
127
127
  wolfhece/hydrometry/kiwis_wolfgui.py,sha256=GPa5YNp2V2ZlxYQjPiCXERgPuWB_zij4ec2yHpRvoFA,4027
128
- wolfhece/hydrometry/kiwispie.py,sha256=Fr63d56ApTjhv2F0_pOHLZjw5jO9jG1iEd3uls2oxzw,13543
128
+ wolfhece/hydrometry/kiwispie.py,sha256=akOaV46WwzISVlCcPz_phjsBrI_rDACUzdELtjx-xNg,13498
129
129
  wolfhece/icons/folder_open.png,sha256=ykBlU2FtGcpjAu1YO4_eGlDg2svgs_IAs-4d5O2e3AM,2329
130
130
  wolfhece/icons/folder_plus.png,sha256=Z1Jcs87Z6pNcudxGDTNhC_hgolSSaXe6_fmQE_n-ero,1963
131
131
  wolfhece/icons/image.png,sha256=jomOPNO4HBArBZe8Ya189Iar5nzhO8c0S9JW-6iaErk,2684
@@ -133,7 +133,7 @@ wolfhece/icons/multiple_files.png,sha256=qQEZ5740dyYrMGWGop5h0e2Np_bjq3eqg6VC1-7
133
133
  wolfhece/icons/python.png,sha256=nQiK5h92QC85148vFBx58lUmaSzEvwTCgDr-cumju_4,2573
134
134
  wolfhece/icons/simulation.png,sha256=I48r_TOPqtUA4bsDGlji--9gJjiDaSl2NcVCMf8h9Gk,2094
135
135
  wolfhece/lagrangian/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- wolfhece/lagrangian/advection.py,sha256=DMJ7BAaVuCVdNz2EM_B-9TrGG3-wzuRMdNKKRAhI_gQ,9194
136
+ wolfhece/lagrangian/advection.py,sha256=_fuDx8AcOVWxY1dYq3no3lSCmLwrw49AAAEr6icE-6c,9243
137
137
  wolfhece/lagrangian/emitter.py,sha256=D-94Joy_bJmhwDIomEDVo1q0LsuzrwaSpzSLjCWXSmo,11862
138
138
  wolfhece/lagrangian/example_domain.py,sha256=-xDTmo1vZWG3yZt3VdhEiOjvtbm77b_AuGb90Rgq2Rk,4787
139
139
  wolfhece/lagrangian/particle_system.py,sha256=ZwlgwH8JuBh3KBzxBZzSZi6ya3ftvk-4P3Lk4s_zh4A,23999
@@ -171,12 +171,11 @@ wolfhece/lazviewer/viewer/viewer.exe,sha256=pF5nwE8vMWlEzkk-SOekae9zpOsPhTWhZbqa
171
171
  wolfhece/lazviewer/viewer/viewer.py,sha256=8_MQCaQOS0Z_oRPiGoRy1lq-aCirReX3hWEBjQID0ig,24665
172
172
  wolfhece/libs/MSVCP140.dll,sha256=2GrBWBI6JFuSdZLIDMAg_qKcjErdwURGbEYloAypx3o,565640
173
173
  wolfhece/libs/WolfDll.dll,sha256=E8SeV0AHVXW5ikAQuVtijqIvaYx7UIMeqvnnsmTMCT8,132934144
174
- wolfhece/libs/WolfOGL.c,sha256=Dm_4cI9NHFAMhs4cskjcQStpeIYjedOrHPqlcHeQVAk,1753700
175
- wolfhece/libs/WolfOGL.pyx,sha256=YmA3NPLt9zPo-UarGnz33dFdSmAc2Vaul5I1_0EWYKo,80278
176
174
  wolfhece/libs/api-ms-win-crt-heap-l1-1-0.dll,sha256=r0euvgZa8vBFoZ8g7H5Upuc8DD6aUQimMJWnIyt1OBo,19720
177
175
  wolfhece/libs/api-ms-win-crt-math-l1-1-0.dll,sha256=ol0GVN6wzqGu8Ym6IXTQ8TvfUvCY06nsNtFeS_swxJk,27912
178
176
  wolfhece/libs/api-ms-win-crt-runtime-l1-1-0.dll,sha256=NxpEq5FhSowm0Vm-uHKntD9WnLX6yK2pms6Y8mSjtQM,23304
179
177
  wolfhece/libs/fribidi-0.dll,sha256=MCLSH_tGJXcJdcnUXilGNTVMH6KU8OumYyJX8yN08bQ,111616
178
+ wolfhece/libs/get_infos.cp310-win_amd64.pyd,sha256=45b6uo0r2zPD4KbpHR8QZC0TwQHDb9S0It7-kv0GWTA,77824
180
179
  wolfhece/libs/glu32.dll,sha256=gLubeeL9b_RDYTQ2JL0iHzpRMg8uapKCOEpZ15k1SUQ,164352
181
180
  wolfhece/libs/hdf5.dll,sha256=quTNP4GZtVNJ6Ptx__ltuGTN0gQ96rvkGL5yBLuUcF4,3129856
182
181
  wolfhece/libs/hdf5_hl.dll,sha256=alZLhLXbReBtwbwsariWWRPAlrwzrePr-Mbdgiy922Y,112128
@@ -199,8 +198,8 @@ wolfhece/libs/svml_dispmd.dll,sha256=GdwVZSC_XYiNpVVUqTqxAcYAf4zP6tr-E1N-3skVS7s
199
198
  wolfhece/libs/vcomp100.dll,sha256=NKvXc8hc4MrFa9k8ErALA6OmldGfR3zidaZPCZhMVJI,57168
200
199
  wolfhece/libs/vcruntime140.dll,sha256=YYMpkONk3KW_osYdkw8ArKrm0aqjEwOSQDRVrpoRJaU,89880
201
200
  wolfhece/libs/vcruntime140_1.dll,sha256=FVS1gClo_bJwWmfLthWF6VYLnkKdBDpap0LvPJu_tr8,37240
202
- wolfhece/libs/verify_license.cp310-win_amd64.pyd,sha256=-lobNXvqiN7vNl7zzrZWOBPsGW13qT77JWiSy2D3FCk,92672
203
- wolfhece/libs/wolfogl.cp310-win_amd64.pyd,sha256=K6HTq5bFSRv9y-k6wbdO4qMPJcZQKvozCYThsltx6Yk,286720
201
+ wolfhece/libs/verify_wolf.cp310-win_amd64.pyd,sha256=ceWkovmTDfQcIzlxOBjUUDoHu6ZglOlUFADaRuAe3WM,127488
202
+ wolfhece/libs/wolfogl.cp310-win_amd64.pyd,sha256=1nQE30ZDXTmnjnaJisDDlP5zvt5Chu2Lxz1a-bZTY1A,294912
204
203
  wolfhece/libs/wolfpy.cp310-win_amd64.pyd,sha256=6omqEaxmQll-Gg24e90wVomAB9rO_tyyOES2FewXn58,36457472
205
204
  wolfhece/libs/zlib1.dll,sha256=E9a0e62VgmG1A8ohZzhVCmmfGtbyXxXu4aFeADTNJ30,77824
206
205
  wolfhece/libs/GL/gl.h,sha256=IhsS_fOLa8GW9MpiLZebe9QYRy6uIB_qK_uQMWMOoeg,46345
@@ -279,8 +278,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=8PlMYrb_8jI8h9F0_EagpM
279
278
  wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
280
279
  wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
280
  wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
282
- wolfhece-2.1.34.dist-info/METADATA,sha256=YzbzAnUePWRacNKgk_2tWGEChEt1Ai5J6mv7EqhadKs,2401
283
- wolfhece-2.1.34.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
284
- wolfhece-2.1.34.dist-info/entry_points.txt,sha256=MAG6NrF64fcxiVNb2g1JPYPGcn9C0HWtqqNurB83oX0,330
285
- wolfhece-2.1.34.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
286
- wolfhece-2.1.34.dist-info/RECORD,,
281
+ wolfhece-2.1.36.dist-info/METADATA,sha256=Tlb74Iqx7ORkpGXPfl2fQwEAhBiBhYuIAn9tDwQRPTY,2430
282
+ wolfhece-2.1.36.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
283
+ wolfhece-2.1.36.dist-info/entry_points.txt,sha256=yggeO1Fa80pi2BrOd9k5dTkiFlefGPwG6HztZhY0-qw,366
284
+ wolfhece-2.1.36.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
285
+ wolfhece-2.1.36.dist-info/RECORD,,
@@ -1,6 +1,7 @@
1
1
  [console_scripts]
2
2
  wolf_accept = wolfhece.cli:accept
3
3
  wolf_check = wolfhece.cli:check
4
+ wolf_license = wolfhece.cli:license
4
5
 
5
6
  [gui_scripts]
6
7
  wolf = wolfhece.cli:wolf