]>
Commit | Line | Data |
---|---|---|
7114b9fa | 1 | # A distutils script to make a standalone .exe of superdoodle for |
47b37e4b RD |
2 | # Windows platforms. You can get py2exe from |
3 | # http://py2exe.sourceforge.net/. Use this command to build the .exe | |
4 | # and collect the other needed files: | |
5 | # | |
6 | # python setup.py py2exe | |
7114b9fa RD |
7 | # |
8 | ||
47b37e4b | 9 | |
7114b9fa RD |
10 | from distutils.core import setup |
11 | import py2exe | |
12 | ||
13 | setup( name = "superdoodle", | |
81457c86 RD |
14 | #console = ["superdoodle.py"] |
15 | windows = ["superdoodle.py"] #, "doodle.py"] | |
7114b9fa RD |
16 | ) |
17 |