setupEM 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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setupEM
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Python tool for configuration of gds2palace workflow with GUI.
5
5
  Author-email: Volker Muehlhaus <volker@muehlhaus.com>
6
6
  Requires-Python: >=3.9
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "setupEM"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Python tool for configuration of gds2palace workflow with GUI."
9
9
  readme = "README.md"
10
10
  authors = [
@@ -200,7 +200,7 @@ class FileInputTab(QWidget):
200
200
  self.main_layout.setAlignment(Qt.AlignTop)
201
201
 
202
202
  # ---------- GDSII FILE GROUP ----------
203
- left_label_width = 200
203
+ left_label_width = 220
204
204
 
205
205
  self.gds_group = QGroupBox("GDSII Layout File")
206
206
  self.gds_layout = QVBoxLayout()
@@ -221,15 +221,16 @@ class FileInputTab(QWidget):
221
221
 
222
222
 
223
223
  self.cellname_layout = QHBoxLayout()
224
- label = QLabel("Cellname (leave empty for default)")
224
+ label = QLabel("Cellname")
225
225
  label.setFixedWidth(left_label_width)
226
226
  self.cellname_layout.addWidget(label)
227
- label.setFixedWidth(left_label_width)
228
227
  self.cellname_box = QComboBox()
229
228
  self.cellname_box.setFixedWidth(250)
230
229
  self.cellname_box.setStyleSheet(COMBO_STYLE_OPTIONAL)
231
230
  self.cellname_box.addItems([""])
232
231
  self.cellname_layout.addWidget(self.cellname_box)
232
+ self.cellname_label2 = QLabel(" (leave empty for default)")
233
+ self.cellname_layout.addWidget(self.cellname_label2)
233
234
  self.cellname_layout.addStretch()
234
235
  self.gds_layout.addLayout(self.cellname_layout)
235
236
 
@@ -199,8 +199,7 @@ class FileInputTab(QWidget):
199
199
  self.main_layout.setAlignment(Qt.AlignTop)
200
200
 
201
201
  # ---------- GDSII FILE GROUP ----------
202
-
203
- left_label_width = 200
202
+ left_label_width = 220
204
203
 
205
204
  self.gds_group = QGroupBox("GDSII Layout File")
206
205
  self.gds_layout = QVBoxLayout()
@@ -221,15 +220,16 @@ class FileInputTab(QWidget):
221
220
 
222
221
 
223
222
  self.cellname_layout = QHBoxLayout()
224
- label = QLabel("Cellname (leave empty for default)")
223
+ label = QLabel("Cellname")
225
224
  label.setFixedWidth(left_label_width)
226
225
  self.cellname_layout.addWidget(label)
227
- label.setFixedWidth(left_label_width)
228
226
  self.cellname_box = QComboBox()
229
227
  self.cellname_box.setFixedWidth(250)
230
228
  self.cellname_box.setStyleSheet(COMBO_STYLE_OPTIONAL)
231
229
  self.cellname_box.addItems([""])
232
230
  self.cellname_layout.addWidget(self.cellname_box)
231
+ self.cellname_label2 = QLabel(" (leave empty for default)")
232
+ self.cellname_layout.addWidget(self.cellname_label2)
233
233
  self.cellname_layout.addStretch()
234
234
  self.gds_layout.addLayout(self.cellname_layout)
235
235
 
@@ -248,7 +248,6 @@ class FileInputTab(QWidget):
248
248
  self.gds_layout.addLayout(self.purpose_layout)
249
249
 
250
250
 
251
-
252
251
  self.viamerge_layout = QHBoxLayout()
253
252
  self.viamerge_label1 = QLabel("Merge via arrays with spacing ")
254
253
  self.viamerge_label1.setFixedWidth(left_label_width)
@@ -273,7 +272,6 @@ class FileInputTab(QWidget):
273
272
 
274
273
  self.gds_group.setLayout(self.gds_layout)
275
274
 
276
-
277
275
  # ---------- XML FILE GROUP ----------
278
276
 
279
277
  self.XML_group = QGroupBox("XML Stackup File")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setupEM
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Python tool for configuration of gds2palace workflow with GUI.
5
5
  Author-email: Volker Muehlhaus <volker@muehlhaus.com>
6
6
  Requires-Python: >=3.9
File without changes
File without changes
File without changes
File without changes