]>
Commit | Line | Data |
---|---|---|
d7ec6564 | 1 | """ |
d7ec6564 RD |
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 | ||
b96c7a38 | 10 | import sys, os, string |
d7ec6564 | 11 | |
d7ec6564 | 12 | KEEP_TEMPS = 0 |
0815db26 | 13 | ISCC = r"%s\InnoSetup2Ex\ISCC.exe %s" |
d7ec6564 RD |
14 | |
15 | #---------------------------------------------------------------------- | |
16 | ||
17 | ISS_Template = r''' | |
18 | ;;------------------------------------------------------------ | |
19 | ||
20 | [Setup] | |
21 | AppName = wxPython | |
faa20af7 | 22 | AppVerName = wxPython %(VERSION)s for Python %(PYTHONVER)s |
d7ec6564 | 23 | OutputBaseFilename = wxPython-%(VERSION)s-%(PYVER)s |
daa3eac9 | 24 |