mg-pso-gui 0.0.12__py3-none-any.whl → 0.0.15__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mg-pso-gui
3
- Version: 0.0.12
3
+ Version: 0.0.15
4
4
  Summary: GUI for MG-PSO
5
5
  Author: Robert Cordingly
6
6
  Author-email: <rcording@uw.ed>
@@ -22,5 +22,6 @@ Requires-Dist: plotly
22
22
  Requires-Dist: csip
23
23
  Requires-Dist: csip-cosu
24
24
  Requires-Dist: kaleido
25
+ Requires-Dist: pillow
25
26
 
26
27
  GUI for MG-PSO
@@ -8,7 +8,7 @@ mgpsogui/OptionManager.py,sha256=lvh-1dwrc0Tu1P0Z3wVJ8ClZUdwCGGBM3B6cDN6YH8w,105
8
8
  mgpsogui/PSORunner.py,sha256=s1mcDE27tTvlxg6fU7yVGVSc_5cTnVT6KOY_Y67RXUI,2681
9
9
  mgpsogui/StaticParameterView.py,sha256=iEG-UpBBlAJabZo3MG768oLqOROjUPc23tKOSd47IUc,2739
10
10
  mgpsogui/StepView.py,sha256=8okZPvzPuXMs34QmK33CRi-x6BCVaU9T_a2MF9loOvo,5516
11
- mgpsogui/__init__.py,sha256=zUljsBjwsFQfWprI5rHj0qUQtE7vmL0TT-iq-eu6DRU,309
11
+ mgpsogui/__init__.py,sha256=Y7X7325tTlK-HdgMSTkb4S8DkT2wduysmgmLvwESWxY,474
12
12
  mgpsogui/best_cost_by_round.png,sha256=T8H34EBGjjFF0iSiJtHikx0zRhLFevzL8hOKa8xUJyI,17529
13
13
  mgpsogui/best_cost_stacked.png,sha256=T8H34EBGjjFF0iSiJtHikx0zRhLFevzL8hOKa8xUJyI,17529
14
14
  mgpsogui/bounds.json,sha256=NDXFdT7lpmzOP9gQlRpeLraE0-W6qObGhmBLwBuFSto,7973
@@ -22,8 +22,9 @@ mgpsogui/images/down.png,sha256=pspJkvUitD648C_2y8JLLD4Eagpk4MDEKQJGOO_yIaY,2654
22
22
  mgpsogui/images/expand.png,sha256=YQyxXipCiNiZpTok5Y4juNU5davxoK7MTlRQI4Id27w,2922
23
23
  mgpsogui/images/trash.png,sha256=j8cf0kWbJd-4Jp20lUVV1o1NSeQ4v1Ej4gfcIA3DVRQ,2958
24
24
  mgpsogui/images/up.png,sha256=AQvFWCUqSQNaQ1E6LKZ9zNfSvW6t4mgy8uswdg9T2Hg,2457
25
- mg_pso_gui-0.0.12.dist-info/LICENSE,sha256=4KnEaagdIWvLuRbEpwrDrlvLJsMYum5DUlu_GNoR-S8,1073
26
- mg_pso_gui-0.0.12.dist-info/METADATA,sha256=AlGnOiRkX-sxXlbXEOzR5q0f1DMOzj0qmoGml_wiRQ4,761
27
- mg_pso_gui-0.0.12.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
28
- mg_pso_gui-0.0.12.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
29
- mg_pso_gui-0.0.12.dist-info/RECORD,,
25
+ mg_pso_gui-0.0.15.dist-info/LICENSE,sha256=4KnEaagdIWvLuRbEpwrDrlvLJsMYum5DUlu_GNoR-S8,1073
26
+ mg_pso_gui-0.0.15.dist-info/METADATA,sha256=FaTf88DLwfKjsSe9qEzmSs18d8hzI2IsbnrUnfVo4P8,783
27
+ mg_pso_gui-0.0.15.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
28
+ mg_pso_gui-0.0.15.dist-info/entry_points.txt,sha256=omv5Vw5rUNZbxrUYtlDA0PmA3-UTZDM5f2Pstp4LS1Q,44
29
+ mg_pso_gui-0.0.15.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
30
+ mg_pso_gui-0.0.15.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mgpsogui = mgpsogui:start
mgpsogui/__init__.py CHANGED
@@ -1,10 +1,10 @@
1
1
  from .mgpsogui import start
2
- from .BoundsEditorWindow import *
3
- from .BoundsList import *
4
- from .CalibrationParametersView import *
5
- from .FunctionsList import *
6
- from .GraphGenerator import *
7
- from .ListParametersView import *
8
- from .OptionManager import *
9
- from .StaticParameterView import *
10
- from .StepView import *
2
+ from . import BoundsEditorWindow as BoundsEditorWindow
3
+ from . import BoundsList as BoundsList
4
+ from . import CalibrationParametersView as CalibrationParametersView
5
+ from . import FunctionsList as FunctionsList
6
+ from . import GraphGenerator as GraphGenerator
7
+ from . import ListParametersView as ListParametersView
8
+ from . import OptionManager as OptionManager
9
+ from . import StaticParameterView as StaticParameterView
10
+ from . import StepView as StepView