18 |
18 |
19 from PyQt6.QtCore import QObject |
19 from PyQt6.QtCore import QObject |
20 |
20 |
21 {config0}\ |
21 {config0}\ |
22 # Start-Of-Header |
22 # Start-Of-Header |
23 name = "{name}" |
23 __header__ = {{ |
24 author = "{author} <{email}>" |
24 "name": "{name}", |
25 autoactivate = {autoactivate} |
25 "author": "{author} <{email}>", |
26 deactivateable = {deactivateable} |
26 "autoactivate": {autoactivate}, |
27 version = "{version}" |
27 "deactivateable": {deactivateable}, |
28 {onDemand}\ |
28 "version": "{version}", |
29 className = "{className}" |
29 {onDemand}\ |
30 packageName = "{packageName}" |
30 "className": "{className}", |
31 shortDescription = "{shortDescription}" |
31 "packageName": "{packageName}", |
32 longDescription = ( |
32 "shortDescription": "{shortDescription}", |
33 """{longDescription}""" |
33 "longDescription": ( |
34 ) |
34 """{longDescription}""" |
35 needsRestart = {needsRestart} |
35 ), |
36 pyqtApi = 2 |
36 "needsRestart": {needsRestart}, |
|
37 "pyqtApi": 2, |
|
38 }} |
37 # End-Of-Header |
39 # End-Of-Header |
38 |
40 |
39 error = "" |
41 error = "" # noqa: U200 |
40 |
42 |
41 |
43 |
42 {modulesetup}\ |
44 {modulesetup}\ |
43 {exeData}\ |
45 {exeData}\ |
44 {apiFiles}\ |
46 {apiFiles}\ |