molde 0.1.7__py3-none-any.whl → 0.1.9__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.
- molde/__main__.py +8 -4
- molde/stylesheets/__init__.py +10 -10
- molde/stylesheets/common.qss +1 -1
- molde/stylesheets/mainwindow.ui +54 -19
- molde/stylesheets/qpushbutton.qss +22 -24
- molde/stylesheets/qtoolbar.qss +11 -0
- {molde-0.1.7.dist-info → molde-0.1.9.dist-info}/METADATA +1 -1
- {molde-0.1.7.dist-info → molde-0.1.9.dist-info}/RECORD +9 -9
- {molde-0.1.7.dist-info → molde-0.1.9.dist-info}/WHEEL +0 -0
molde/__main__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import os, sys
|
2
2
|
from PySide6.QtWidgets import QMainWindow, QApplication, QMessageBox, QLineEdit, QTableWidgetItem, QPushButton, QLabel, QSlider
|
3
|
-
from PySide6.QtGui import QColor
|
3
|
+
from PySide6.QtGui import QColor, QFont
|
4
4
|
from PySide6.QtCore import Qt
|
5
5
|
from time import time
|
6
6
|
|
@@ -35,13 +35,17 @@ class Example(QMainWindow):
|
|
35
35
|
|
36
36
|
self.botao1 = QPushButton()
|
37
37
|
self.label = QLabel("Olha o sapooo")
|
38
|
+
self.label.setProperty("type", "logo")
|
39
|
+
# font = QFont()
|
40
|
+
# font.setFamily("Bauhaus 93")
|
41
|
+
# self.label.setFont(font)
|
42
|
+
print(self.label.fontInfo().family())
|
43
|
+
|
38
44
|
self.slider = QSlider(Qt.Orientation.Horizontal)
|
39
45
|
self.slider.setValue(50)
|
40
46
|
self.botao1.setText("Olha a faca")
|
41
47
|
self.toolbar_2.addWidget(self.label)
|
42
|
-
self.toolbar_2.
|
43
|
-
self.toolbar_2.addWidget(self.slider)
|
44
|
-
self.toolbar_2.setDisabled(True)
|
48
|
+
self.toolbar_2.setDisabled(False)
|
45
49
|
|
46
50
|
item = QTableWidgetItem("fr")
|
47
51
|
item.setBackground(QColor("#FF0000"))
|
molde/stylesheets/__init__.py
CHANGED
@@ -16,15 +16,15 @@ def get_variables(theme:Literal["light", "dark"] = "light") -> dict:
|
|
16
16
|
|
17
17
|
if theme == "light":
|
18
18
|
variables.update({
|
19
|
-
"@primary-lighter": color_names.
|
19
|
+
"@primary-lighter": color_names.BLUE_6.to_hex(),
|
20
20
|
"@primary": color_names.BLUE_4.to_hex(),
|
21
21
|
"@primary-darker": color_names.BLUE_3.to_hex(),
|
22
22
|
|
23
|
-
"@danger-color-lighter": color_names.
|
23
|
+
"@danger-color-lighter": color_names.RED_5.to_hex(),
|
24
24
|
"@danger-color": color_names.RED_4.to_hex(),
|
25
|
-
"@danger-color-darker": color_names.
|
25
|
+
"@danger-color-darker": color_names.RED_2.to_hex(),
|
26
26
|
|
27
|
-
"@warning-color-lighter": color_names.
|
27
|
+
"@warning-color-lighter": color_names.YELLOW_6.to_hex(),
|
28
28
|
"@warning-color": color_names.YELLOW_4.to_hex(),
|
29
29
|
"@warning-color-darker": color_names.YELLOW_3.to_hex(),
|
30
30
|
|
@@ -54,15 +54,15 @@ def get_variables(theme:Literal["light", "dark"] = "light") -> dict:
|
|
54
54
|
|
55
55
|
elif theme == "dark":
|
56
56
|
variables.update({
|
57
|
-
"@primary-lighter": color_names.
|
58
|
-
"@primary": color_names.
|
59
|
-
"@primary-darker": color_names.
|
57
|
+
"@primary-lighter": color_names.BLUE_6.to_hex(),
|
58
|
+
"@primary": color_names.BLUE_5.to_hex(),
|
59
|
+
"@primary-darker": color_names.BLUE_4.to_hex(),
|
60
60
|
|
61
|
-
"@danger-color-lighter": color_names.
|
61
|
+
"@danger-color-lighter": color_names.RED_5.to_hex(),
|
62
62
|
"@danger-color": color_names.RED_4.to_hex(),
|
63
|
-
"@danger-color-darker": color_names.
|
63
|
+
"@danger-color-darker": color_names.RED_2.to_hex(),
|
64
64
|
|
65
|
-
"@warning-color-lighter": color_names.
|
65
|
+
"@warning-color-lighter": color_names.YELLOW_6.to_hex(),
|
66
66
|
"@warning-color": color_names.YELLOW_4.to_hex(),
|
67
67
|
"@warning-color-darker": color_names.YELLOW_3.to_hex(),
|
68
68
|
|
molde/stylesheets/common.qss
CHANGED
molde/stylesheets/mainwindow.ui
CHANGED
@@ -18,10 +18,10 @@
|
|
18
18
|
<item>
|
19
19
|
<widget class="QFrame" name="frame">
|
20
20
|
<property name="frameShape">
|
21
|
-
<enum>QFrame::StyledPanel</enum>
|
21
|
+
<enum>QFrame::Shape::StyledPanel</enum>
|
22
22
|
</property>
|
23
23
|
<property name="frameShadow">
|
24
|
-
<enum>QFrame::Raised</enum>
|
24
|
+
<enum>QFrame::Shadow::Raised</enum>
|
25
25
|
</property>
|
26
26
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
27
27
|
<item>
|
@@ -61,6 +61,12 @@
|
|
61
61
|
<layout class="QVBoxLayout" name="verticalLayout_5">
|
62
62
|
<item>
|
63
63
|
<widget class="QPushButton" name="change_theme_button">
|
64
|
+
<property name="maximumSize">
|
65
|
+
<size>
|
66
|
+
<width>16777215</width>
|
67
|
+
<height>28</height>
|
68
|
+
</size>
|
69
|
+
</property>
|
64
70
|
<property name="text">
|
65
71
|
<string>Change Theme</string>
|
66
72
|
</property>
|
@@ -163,10 +169,10 @@ LOCO</string>
|
|
163
169
|
<item>
|
164
170
|
<widget class="QFrame" name="frame_2">
|
165
171
|
<property name="frameShape">
|
166
|
-
<enum>QFrame::StyledPanel</enum>
|
172
|
+
<enum>QFrame::Shape::StyledPanel</enum>
|
167
173
|
</property>
|
168
174
|
<property name="frameShadow">
|
169
|
-
<enum>QFrame::Plain</enum>
|
175
|
+
<enum>QFrame::Shadow::Plain</enum>
|
170
176
|
</property>
|
171
177
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
172
178
|
<item>
|
@@ -213,9 +219,6 @@ LOCO</string>
|
|
213
219
|
</item>
|
214
220
|
</layout>
|
215
221
|
</item>
|
216
|
-
<item>
|
217
|
-
<widget class="QDial" name="dial"/>
|
218
|
-
</item>
|
219
222
|
<item>
|
220
223
|
<layout class="QVBoxLayout" name="verticalLayout_4">
|
221
224
|
<item>
|
@@ -227,7 +230,7 @@ LOCO</string>
|
|
227
230
|
<number>50</number>
|
228
231
|
</property>
|
229
232
|
<property name="orientation">
|
230
|
-
<enum>Qt::Horizontal</enum>
|
233
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
231
234
|
</property>
|
232
235
|
</widget>
|
233
236
|
</item>
|
@@ -237,7 +240,7 @@ LOCO</string>
|
|
237
240
|
<number>50</number>
|
238
241
|
</property>
|
239
242
|
<property name="orientation">
|
240
|
-
<enum>Qt::Horizontal</enum>
|
243
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
241
244
|
</property>
|
242
245
|
</widget>
|
243
246
|
</item>
|
@@ -247,7 +250,7 @@ LOCO</string>
|
|
247
250
|
<number>50</number>
|
248
251
|
</property>
|
249
252
|
<property name="orientation">
|
250
|
-
<enum>Qt::Horizontal</enum>
|
253
|
+
<enum>Qt::Orientation::Horizontal</enum>
|
251
254
|
</property>
|
252
255
|
</widget>
|
253
256
|
</item>
|
@@ -261,7 +264,7 @@ LOCO</string>
|
|
261
264
|
<number>50</number>
|
262
265
|
</property>
|
263
266
|
<property name="orientation">
|
264
|
-
<enum>Qt::Vertical</enum>
|
267
|
+
<enum>Qt::Orientation::Vertical</enum>
|
265
268
|
</property>
|
266
269
|
</widget>
|
267
270
|
</item>
|
@@ -271,7 +274,7 @@ LOCO</string>
|
|
271
274
|
<number>50</number>
|
272
275
|
</property>
|
273
276
|
<property name="orientation">
|
274
|
-
<enum>Qt::Vertical</enum>
|
277
|
+
<enum>Qt::Orientation::Vertical</enum>
|
275
278
|
</property>
|
276
279
|
</widget>
|
277
280
|
</item>
|
@@ -281,7 +284,7 @@ LOCO</string>
|
|
281
284
|
<number>50</number>
|
282
285
|
</property>
|
283
286
|
<property name="orientation">
|
284
|
-
<enum>Qt::Vertical</enum>
|
287
|
+
<enum>Qt::Orientation::Vertical</enum>
|
285
288
|
</property>
|
286
289
|
</widget>
|
287
290
|
</item>
|
@@ -293,7 +296,7 @@ LOCO</string>
|
|
293
296
|
<item>
|
294
297
|
<widget class="QTabWidget" name="tabWidget">
|
295
298
|
<property name="currentIndex">
|
296
|
-
<number>
|
299
|
+
<number>2</number>
|
297
300
|
</property>
|
298
301
|
<widget class="QWidget" name="tab">
|
299
302
|
<attribute name="title">
|
@@ -416,10 +419,10 @@ LOCO</string>
|
|
416
419
|
<item>
|
417
420
|
<widget class="QTableWidget" name="tableWidget">
|
418
421
|
<property name="frameShape">
|
419
|
-
<enum>QFrame::StyledPanel</enum>
|
422
|
+
<enum>QFrame::Shape::StyledPanel</enum>
|
420
423
|
</property>
|
421
424
|
<property name="frameShadow">
|
422
|
-
<enum>QFrame::Plain</enum>
|
425
|
+
<enum>QFrame::Shadow::Plain</enum>
|
423
426
|
</property>
|
424
427
|
<row>
|
425
428
|
<property name="text">
|
@@ -471,7 +474,36 @@ LOCO</string>
|
|
471
474
|
</attribute>
|
472
475
|
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
473
476
|
<item>
|
474
|
-
<widget class="CommonRenderWidget" name="render_widget" native="true"
|
477
|
+
<widget class="CommonRenderWidget" name="render_widget" native="true">
|
478
|
+
<widget class="QLabel" name="label">
|
479
|
+
<property name="geometry">
|
480
|
+
<rect>
|
481
|
+
<x>140</x>
|
482
|
+
<y>20</y>
|
483
|
+
<width>500</width>
|
484
|
+
<height>141</height>
|
485
|
+
</rect>
|
486
|
+
</property>
|
487
|
+
<property name="maximumSize">
|
488
|
+
<size>
|
489
|
+
<width>500</width>
|
490
|
+
<height>500</height>
|
491
|
+
</size>
|
492
|
+
</property>
|
493
|
+
<property name="styleSheet">
|
494
|
+
<string notr="true">font-family: 'MS Sans Serif';</string>
|
495
|
+
</property>
|
496
|
+
<property name="text">
|
497
|
+
<string/>
|
498
|
+
</property>
|
499
|
+
<property name="pixmap">
|
500
|
+
<pixmap>../../../OpenPulse/pulse/interface/data/icons/logos/OpenPulse_logo_white.png</pixmap>
|
501
|
+
</property>
|
502
|
+
<property name="scaledContents">
|
503
|
+
<bool>true</bool>
|
504
|
+
</property>
|
505
|
+
</widget>
|
506
|
+
</widget>
|
475
507
|
</item>
|
476
508
|
</layout>
|
477
509
|
</widget>
|
@@ -483,7 +515,7 @@ LOCO</string>
|
|
483
515
|
<bool>true</bool>
|
484
516
|
</property>
|
485
517
|
<property name="standardButtons">
|
486
|
-
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
518
|
+
<set>QDialogButtonBox::StandardButton::Cancel|QDialogButtonBox::StandardButton::Ok</set>
|
487
519
|
</property>
|
488
520
|
<property name="danger" stdset="0">
|
489
521
|
<bool>true</bool>
|
@@ -498,7 +530,7 @@ LOCO</string>
|
|
498
530
|
<x>0</x>
|
499
531
|
<y>0</y>
|
500
532
|
<width>800</width>
|
501
|
-
<height>
|
533
|
+
<height>20</height>
|
502
534
|
</rect>
|
503
535
|
</property>
|
504
536
|
<widget class="QMenu" name="menuproject">
|
@@ -561,6 +593,9 @@ LOCO</string>
|
|
561
593
|
<property name="checkable">
|
562
594
|
<bool>true</bool>
|
563
595
|
</property>
|
596
|
+
<property name="enabled">
|
597
|
+
<bool>false</bool>
|
598
|
+
</property>
|
564
599
|
<property name="text">
|
565
600
|
<string>Mama</string>
|
566
601
|
</property>
|
@@ -4,7 +4,7 @@ QPushButton {
|
|
4
4
|
border: 1px solid @border-color;
|
5
5
|
border-radius: 5px;
|
6
6
|
text-align: center;
|
7
|
-
padding:
|
7
|
+
padding: 5px 9px;
|
8
8
|
}
|
9
9
|
|
10
10
|
QPushButton::hover {
|
@@ -24,57 +24,55 @@ QPushButton::disabled {
|
|
24
24
|
|
25
25
|
QPushButton[status=main],
|
26
26
|
QPushButton::default {
|
27
|
-
|
28
|
-
|
29
|
-
color: @primary;
|
30
|
-
font-weight: bold;
|
27
|
+
color: @on-primary;
|
28
|
+
background-color: @primary;
|
31
29
|
}
|
32
30
|
|
33
31
|
QPushButton[status=main]::hover,
|
34
32
|
QPushButton::default:hover {
|
35
|
-
background-color: @
|
33
|
+
background-color: @primary-lighter;
|
36
34
|
}
|
37
35
|
|
38
36
|
QPushButton[status=main]::checked,
|
39
37
|
QPushButton[status=main]::pressed,
|
40
38
|
QPushButton::default:checked,
|
41
39
|
QPushButton::default:pressed {
|
42
|
-
background-color: @primary-
|
43
|
-
color: @primary
|
40
|
+
background-color: @primary-darker;
|
41
|
+
color: @on-primary;
|
44
42
|
}
|
45
43
|
|
46
|
-
QPushButton[status=danger]
|
47
|
-
|
48
|
-
|
49
|
-
color: @danger-color;
|
50
|
-
|
44
|
+
QPushButton[status=danger],
|
45
|
+
QPushButton[status=danger]:focus {
|
46
|
+
color: @on-primary;
|
47
|
+
border-color: @danger-color;
|
48
|
+
background-color: @danger-color;
|
51
49
|
}
|
52
50
|
|
53
51
|
QPushButton[status=danger]::hover {
|
54
|
-
background-color: @
|
52
|
+
background-color: @danger-color-lighter;
|
55
53
|
}
|
56
54
|
|
57
55
|
QPushButton[status=danger]::checked,
|
58
56
|
QPushButton[status=danger]::pressed {
|
59
|
-
background-color: @danger-color-
|
60
|
-
color: @danger-color
|
57
|
+
background-color: @danger-color-darker;
|
58
|
+
border-color: @danger-color;
|
61
59
|
}
|
62
60
|
|
63
|
-
QPushButton[status=warning]
|
64
|
-
|
65
|
-
|
66
|
-
color: @warning-color;
|
67
|
-
|
61
|
+
QPushButton[status=warning],
|
62
|
+
QPushButton[status=warning]:focus {
|
63
|
+
color: @on-primary;
|
64
|
+
background-color: @warning-color;
|
65
|
+
border-color: @warning-color;
|
68
66
|
}
|
69
67
|
|
70
68
|
QPushButton[status=warning]::hover {
|
71
|
-
background-color: @
|
69
|
+
background-color: @warning-color-lighter;
|
72
70
|
}
|
73
71
|
|
74
72
|
QPushButton[status=warning]::checked,
|
75
73
|
QPushButton[status=warning]::pressed {
|
76
|
-
background-color: @warning-color-
|
77
|
-
color: @
|
74
|
+
background-color: @warning-color-darker;
|
75
|
+
color: @on-primary;
|
78
76
|
}
|
79
77
|
|
80
78
|
QPushButton[status=main]::disabled,
|
molde/stylesheets/qtoolbar.qss
CHANGED
@@ -31,6 +31,10 @@ QToolBar QComboBox {
|
|
31
31
|
height: 15px;
|
32
32
|
}
|
33
33
|
|
34
|
+
QToolBar QWidget:disabled {
|
35
|
+
background: transparent;
|
36
|
+
}
|
37
|
+
|
34
38
|
QToolBar QSlider:disabled {
|
35
39
|
background-color: @disabled-background;
|
36
40
|
}
|
@@ -49,4 +53,11 @@ QToolBar QFrame::disabled {
|
|
49
53
|
background: @disabled-background;
|
50
54
|
}
|
51
55
|
|
56
|
+
QToolBar QLabel:disabled,
|
57
|
+
QToolBar QSlider:disabled {
|
58
|
+
background: transparent;
|
59
|
+
}
|
60
|
+
|
61
|
+
|
62
|
+
|
52
63
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
molde/__init__.py,sha256=0iu27Lpdn0XBDRjRuRqhZHT7zoHNNMqf3E1zDJjuXX8,417
|
2
|
-
molde/__main__.py,sha256=
|
2
|
+
molde/__main__.py,sha256=A3nZwfdOB-DjKOI_NVPl7EUYBsLq5_Yg8pP4GDI2mTQ,2811
|
3
3
|
molde/actors/__init__.py,sha256=hIWbRlKTYleqyVWtcGE7X8Nu9oiZoc2ceRdQ5gZfe3c,266
|
4
4
|
molde/actors/common_symbols_actor.py,sha256=gv6swuV8pje7JyQjGDaRVi8r7Clc7mz6qNN-DRbMY9o,5067
|
5
5
|
molde/actors/ghost_actor.py,sha256=m7fu_bhIZM1kWhObZ_c8t_w9ZsAdDo9SlAT-pYUu_Lg,493
|
@@ -39,22 +39,22 @@ molde/poly_data/vertices_data.py,sha256=jqmEhVdb3-qh_kIjCb0s0Cljx1FFY3NLUOuFa4sG
|
|
39
39
|
molde/render_widgets/__init__.py,sha256=SOU9bax48D2bP_zhtF_o_Yh7HAK4clIPcjxfjYOnSVM,110
|
40
40
|
molde/render_widgets/animated_render_widget.py,sha256=Ek9a9s4NTVonJJ3BVulI4bxKWRgd9mb9s1xZeImRMa0,5352
|
41
41
|
molde/render_widgets/common_render_widget.py,sha256=cFHK-b6DHnNpZ3ZuAx2Zjy-W82UWScED7CM028vHtr0,15457
|
42
|
-
molde/stylesheets/__init__.py,sha256=
|
43
|
-
molde/stylesheets/common.qss,sha256=
|
42
|
+
molde/stylesheets/__init__.py,sha256=8F034fEXekqeF51sa_Qwu4o47h1bqYIp2bNCOtigsCs,5564
|
43
|
+
molde/stylesheets/common.qss,sha256=9w0iI7UlYWL1ktrTe4suRsKcyDoB1cIkFjOt810Zkp8,303
|
44
44
|
molde/stylesheets/create_color_page.py,sha256=t9w_CMQXZXegqv_2_3Te6RW7jV3Q_uixvwYkbiJDjaM,1714
|
45
|
-
molde/stylesheets/mainwindow.ui,sha256=
|
45
|
+
molde/stylesheets/mainwindow.ui,sha256=3RpuB0rsV7uTAJ1VEfFFRKPfzV9q6so0y3V_Rda6Xdg,18379
|
46
46
|
molde/stylesheets/qcheckbox.qss,sha256=o2mz0w1UDDASIgF9FyXqXNoRc9tJx5KdTkdzYnOA02I,478
|
47
47
|
molde/stylesheets/qinputs.qss,sha256=y-2khBmx2FmqM6MFIejpoM4K9El0YVt1ETBINCmEonc,2028
|
48
48
|
molde/stylesheets/qlayouts.qss,sha256=e7KUqIWja5nXacmJtPq-sV443zBHiVkjlCar20lnP9E,392
|
49
49
|
molde/stylesheets/qmenubar.qss,sha256=ccw4SGFhLICrfZr_TZG6NSU7xHQz42ifraJyC3zVL2U,185
|
50
50
|
molde/stylesheets/qprogressbar.qss,sha256=LkC7WfMz_NAL1GXrfmVnGvLRgirsJjP5XMHDqIKoohk,303
|
51
|
-
molde/stylesheets/qpushbutton.qss,sha256=
|
51
|
+
molde/stylesheets/qpushbutton.qss,sha256=iKl99G84Xgp4XXToFgLOUzaSbf6BkJsBpI9Mg_zAhY8,1928
|
52
52
|
molde/stylesheets/qradiobutton.qss,sha256=1eo-UOm4AlQWm2EWA39C2Efk3vW0j8qrZjrRJfoXohU,585
|
53
53
|
molde/stylesheets/qscrollbar.qss,sha256=8eB-kzQBI_M0IHqPUdig9S0BnH2voyUo0TrfHi-N95s,823
|
54
54
|
molde/stylesheets/qslider.qss,sha256=YEo3DMsqew8zqwpGlDqGjsfAPPzMbZMnDxBdLxQWQDg,952
|
55
55
|
molde/stylesheets/qtablewidget.qss,sha256=8uuX07mOKrHM4GCn-66skVZY-KIJ0hPm1yt4FD76Z_Y,481
|
56
56
|
molde/stylesheets/qtabwidget.qss,sha256=Iel50ZzKiP4Uz3UA7X2WAy_a7rxgBZNOV2IcCu2u16g,532
|
57
|
-
molde/stylesheets/qtoolbar.qss,sha256=
|
57
|
+
molde/stylesheets/qtoolbar.qss,sha256=cu6b-YIUxnbjJYrrRFFLSlduhh7CUaysdst5FfvsaVM,1016
|
58
58
|
molde/stylesheets/qtoolbuttons.qss,sha256=WD-csaKuG9TbwrCJXPcpAwxdoJqMSK-Ya_8ZYDPls78,272
|
59
59
|
molde/stylesheets/qtreewidget.qss,sha256=r7bFn20jphbfmfnV6v9Qc70r8urKpMEV7VjODL_27pQ,557
|
60
60
|
molde/ui_files/messages/new_loading_window.ui,sha256=6tHF2G5UxPOxgmB1UOByBeWpF6hnxty8tJ2wUX3UKoU,1726
|
@@ -63,6 +63,6 @@ molde/utils/format_sequences.py,sha256=RHxWGpWBRi89jTk3F4sdlGsKqeheRD49PZMeM36Rs
|
|
63
63
|
molde/utils/poly_data_utils.py,sha256=WoeW46ciuSZB4KO9oh0ksPoxARUbheQDROcjwlpjL4c,2125
|
64
64
|
molde/utils/tree_info.py,sha256=FxgT_uKjtgi0-NVcH41LBoqRmAKt26NJmsjBk1WTqt8,1760
|
65
65
|
molde/windows/loading_window.py,sha256=3U1VEujSKWWWIu1aSqSkYCupTpstI0xks6csJhdKh5Y,6288
|
66
|
-
molde-0.1.
|
67
|
-
molde-0.1.
|
68
|
-
molde-0.1.
|
66
|
+
molde-0.1.9.dist-info/METADATA,sha256=b0oI3__m9DBZolnQjX9aGkyGUF0RVA-GGB6PPGoZWas,2101
|
67
|
+
molde-0.1.9.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
68
|
+
molde-0.1.9.dist-info/RECORD,,
|
File without changes
|