5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to generate a requirements file. |
7 Module implementing a dialog to generate a requirements file. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
|
11 try: |
|
12 str = unicode # __IGNORE_EXCEPTION__ |
|
13 except NameError: |
|
14 pass |
|
15 |
10 |
16 import os |
11 import os |
17 |
12 |
18 from PyQt5.QtCore import pyqtSlot, Qt |
13 from PyQt5.QtCore import pyqtSlot, Qt |
19 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton, \ |
14 from PyQt5.QtWidgets import ( |
20 QApplication |
15 QDialog, QDialogButtonBox, QAbstractButton, QApplication |
|
16 ) |
21 |
17 |
22 from E5Gui import E5MessageBox, E5FileDialog |
18 from E5Gui import E5MessageBox, E5FileDialog |
23 from E5Gui.E5PathPicker import E5PathPickerModes |
19 from E5Gui.E5PathPicker import E5PathPickerModes |
24 from E5Gui.E5Application import e5App |
20 from E5Gui.E5Application import e5App |
25 |
21 |