Fri, 27 Oct 2023 14:09:40 +0200
Regenerated the source documentation with the corrected module parser.
10128
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
1 | # -*- coding: utf-8 -*- |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
2 | |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
3 | # Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de> |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
4 | # |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
5 | |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
6 | """ |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
7 | Module implementing the Windows entry point. |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
8 | """ |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
9 | |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
10 | if __name__ == "__main__": |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
11 | from eric7_pip import main |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
12 | |
a43ce4625e1e
Added the forgotten Windows start script for the pip management application.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
13 | main() |