same bugfixes

This commit is contained in:
anwinged
2012-05-15 07:46:49 +00:00
parent 047d24fb9c
commit 5c5de2dd67
6 changed files with 374 additions and 16 deletions

13
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,
)