PluginProjectDjango.py

branch
eric7
changeset 195
b027b4f90994
parent 193
bf4c1a7833b4
child 197
2667e16a3379
diff -r f497097bb0aa -r b027b4f90994 PluginProjectDjango.py
--- a/PluginProjectDjango.py	Fri Jul 12 08:31:32 2024 +0200
+++ b/PluginProjectDjango.py	Mon Oct 28 16:24:54 2024 +0100
@@ -25,17 +25,20 @@
 from ProjectDjango.Project import Project
 
 # Start-of-Header
-name = "Django Project Plugin"
-author = "Detlev Offenbach <detlev@die-offenbachs.de>"
-autoactivate = True
-deactivateable = True
-version = "10.3.1"
-className = "ProjectDjangoPlugin"
-packageName = "ProjectDjango"
-shortDescription = "Project support for Django projects."
-longDescription = """This plugin implements project support for Django projects."""
-needsRestart = False
-pyqtApi = 2
+__header__ = {
+    "name": "Django Project Plugin",
+    "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
+    "autoactivate": True,
+    "deactivateable": True,
+    "version": "10.3.2",
+    "className": "ProjectDjangoPlugin",
+    "packageName": "ProjectDjango",
+    "shortDescription": "Project support for Django projects.",
+    "longDescription": "This plugin implements project support for Django projects.",
+    "needsRestart": False,
+    "hasCompiledForms": True,
+    "pyqtApi": 2,
+}
 # End-of-Header
 
 error = ""

eric ide

mercurial