]>
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 | ||
10 | import os, string | |
11 | ||
d7ec6564 RD |
12 | KEEP_TEMPS = 0 |
13 | ||
14 | #---------------------------------------------------------------------- | |
15 | ||
16 | ISS_Template = r''' | |
17 | ;;------------------------------------------------------------ | |
18 | ||
19 | [Setup] | |
20 | AppName = wxPython | |
faa20af7 | 21 | AppVerName = wxPython %(VERSION)s for Python %(PYTHONVER)s |
d7ec6564 RD |
22 | OutputBaseFilename = wxPython-%(VERSION)s-%(PYVER)s |
23 |