same bugfixes

This commit is contained in:
anwinged
2012-05-15 07:46:49 +00:00
parent f92b708b3c
commit 166fe3e174
6 changed files with 374 additions and 16 deletions

13
trunk/tasks/setup.py Normal file
View File

@ -0,0 +1,13 @@
from distutils.core import setup
import py2exe
setup(
name = 'testt',
console = ['testt.py'],
options = { "py2exe": {
"compressed": 2,
"optimize": 2,
"bundle_files": 1,
} },
zipfile = None,
)