PluginPyInstaller.py

changeset 12
1492fbafd273
parent 11
14555b50b6c0
child 16
11732bdf5b26
equal deleted inserted replaced
11:14555b50b6c0 12:1492fbafd273
295 self.tr('Generate a distribution package using PyInstaller')) 295 self.tr('Generate a distribution package using PyInstaller'))
296 act.setWhatsThis(self.tr( 296 act.setWhatsThis(self.tr(
297 """<b>Execute PyInstaller</b>""" 297 """<b>Execute PyInstaller</b>"""
298 """<p>Generate a distribution package using PyInstaller.""" 298 """<p>Generate a distribution package using PyInstaller."""
299 """ The command is executed in the project path. All""" 299 """ The command is executed in the project path. All"""
300 """ files and directories must be given absolute or""" 300 """ files and directories must be given as absolute paths or"""
301 """ relative to the project directory.</p>""" 301 """ as paths relative to the project path.</p>"""
302 )) 302 ))
303 act.triggered.connect(self.__pyinstaller) 303 act.triggered.connect(self.__pyinstaller)
304 menu.addAction(act) 304 menu.addAction(act)
305 self.__projectActs.append(act) 305 self.__projectActs.append(act)
306 306
311 self, 'packagers_pyinstaller_spec') 311 self, 'packagers_pyinstaller_spec')
312 act.setStatusTip( 312 act.setStatusTip(
313 self.tr('Generate a spec file to be used by PyInstaller')) 313 self.tr('Generate a spec file to be used by PyInstaller'))
314 act.setWhatsThis(self.tr( 314 act.setWhatsThis(self.tr(
315 """<b>Make PyInstaller Spec File</b>""" 315 """<b>Make PyInstaller Spec File</b>"""
316 """<p>Generate a spec file to be used by PyInstaller""" 316 """<p>Generate a spec file to be used by PyInstaller."""
317 """ PyInstaller. The command is executed in the project""" 317 """ The command is executed in the project path. All"""
318 """ path. All files and directories must be given absolute""" 318 """ files and directories must be given as absolute paths or"""
319 """ or relative to the project directory.</p>""" 319 """ as paths relative to the project path.</p>"""
320 )) 320 ))
321 act.triggered.connect(self.__pyiMakeSpec) 321 act.triggered.connect(self.__pyiMakeSpec)
322 menu.addAction(act) 322 menu.addAction(act)
323 self.__projectActs.append(act) 323 self.__projectActs.append(act)
324 324

eric ide

mercurial