Skip to content

Commit

Permalink
Set bundle_files to 3 in setup.py, fixes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
pabennett committed Apr 14, 2013
1 parent d85353a commit 6f4ba5a
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions setup.py
Expand Up @@ -16,17 +16,23 @@
# Setup args that apply to all setups, including ordinary distutils.
setup_args = dict(
data_files=mydata_files)

# py2exe options
try:
import py2exe
setup_args.update(dict(
windows=[dict(
script=script_file
)],
options={"py2exe": {
'bundle_files':1,
'ascii':False}}))
options={"py2exe": {
'bundle_files' : 3,
'ascii' : 0,
}
},
#zipfile = None
)
)

except ImportError:
pass

Expand All @@ -43,4 +49,4 @@
# except ImportError:
# pass

setup(**setup_args)
setup(**setup_args)

0 comments on commit 6f4ba5a

Please sign in to comment.