Added the forgotten Windows start script for the pip management application. eric7

Sun, 23 Jul 2023 19:26:44 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 23 Jul 2023 19:26:44 +0200
branch
eric7
changeset 10128
a43ce4625e1e
parent 10127
a7018026aae2
child 10129
d4d210405367

Added the forgotten Windows start script for the pip management application.

eric7.epj file | annotate | diff | comparison | revisions
src/eric7/eric7_pip.pyw file | annotate | diff | comparison | revisions
--- a/eric7.epj	Sun Jul 23 17:30:31 2023 +0200
+++ b/eric7.epj	Sun Jul 23 19:26:44 2023 +0200
@@ -2472,6 +2472,7 @@
       "src/eric7/eric7_pdf.py",
       "src/eric7/eric7_pdf.pyw",
       "src/eric7/eric7_pip.py",
+      "src/eric7/eric7_pip.pyw",
       "src/eric7/eric7_plugininstall.py",
       "src/eric7/eric7_plugininstall.pyw",
       "src/eric7/eric7_pluginrepository.py",
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/eric7_pip.pyw	Sun Jul 23 19:26:44 2023 +0200
@@ -0,0 +1,13 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the Windows entry point.
+"""
+
+if __name__ == "__main__":
+    from eric7_pip import main
+
+    main()

eric ide

mercurial