diff --git a/setup.py b/setup.py index a693433..28a3571 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # Setup args that apply to all setups, including ordinary distutils. setup_args = dict( data_files=mydata_files) - + # py2exe options try: import py2exe @@ -24,9 +24,15 @@ windows=[dict( script=script_file )], - options={"py2exe": { - 'bundle_files':1, - 'ascii':False}})) + options={"py2exe": { + 'bundle_files' : 3, + 'ascii' : 0, + } + }, + #zipfile = None + ) + ) + except ImportError: pass @@ -43,4 +49,4 @@ # except ImportError: # pass -setup(**setup_args) \ No newline at end of file +setup(**setup_args)