11 import os |
11 import os |
12 |
12 |
13 from PyQt6.QtCore import QObject, QTranslator |
13 from PyQt6.QtCore import QObject, QTranslator |
14 from PyQt6.QtWidgets import QMenu |
14 from PyQt6.QtWidgets import QMenu |
15 |
15 |
16 from EricWidgets.EricApplication import ericApp |
16 from eric7.EricWidgets.EricApplication import ericApp |
17 |
17 |
18 # Start-Of-Header |
18 # Start-Of-Header |
19 name = "PySide to PyQt (and vice versa) Plug-in" |
19 name = "PySide to PyQt (and vice versa) Plug-in" |
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
21 autoactivate = True |
21 autoactivate = True |
22 deactivateable = True |
22 deactivateable = True |
23 version = "10.0.0" |
23 version = "10.1.0" |
24 className = "PySide2PyQtPlugin" |
24 className = "PySide2PyQtPlugin" |
25 packageName = "PySide2PyQt" |
25 packageName = "PySide2PyQt" |
26 shortDescription = "Convert PySide file to PyQt and vice versa" |
26 shortDescription = "Convert PySide file to PyQt and vice versa" |
27 longDescription = ( |
27 longDescription = ( |
28 """This plug-in implements a tool to convert a PySide2 file to PyQt5""" |
28 """This plug-in implements a tool to convert a PySide2 file to PyQt5""" |