same bugfixes
This commit is contained in:
13
tasks/setup.py
Normal file
13
tasks/setup.py
Normal 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,
|
||||
)
|
Reference in New Issue
Block a user