]>
Commit | Line | Data |
---|---|---|
1 | """ | |
2 | This script will generate a setup script for InnoSetup and then run it | |
3 | to make the installer executable. If all goes right the proper versions | |
4 | of Python and wxWindows (including hybrid/final settings) will all be | |
5 | calculated based on what wxc.pyd imports and an appropriate installer | |
6 | will be created. | |
7 | """ | |
8 | ||
9 | ||
10 | import sys, os, string | |
11 | ||
12 | KEEP_TEMPS = 0 | |
13 | ISCC = r"C:\TOOLS\InnoSetup2Ex\ISCC.exe %s" | |
14 | ||
15 | #---------------------------------------------------------------------- | |
16 | ||
17 | ISS_Template = r''' | |
18 | ;;------------------------------------------------------------ | |
19 | ||
20 | [Setup] | |
21 | AppName = wxPython | |
22 | AppVerName = wxPython %(VERSION)s for Python %(PYTHONVER)s | |
23 | OutputBaseFilename = wxPython-%(VERSION)s-%(PYVER)s | |
24 |