I bundled a small script written in python using py2exe. The script uses many packages and one of them is reportlab. After bundling using py2exe I tried to run the execut
Skip graphics if you are not using them...
packages= [
'reportlab',
'reportlab.lib',
'reportlab.pdfbase',
'reportlab.pdfgen',
'reportlab.platypus',
]
setup(name='pitman',
version='1.0',
author='cue',
data_files = dataFiles,
console=['xxx.py', 'yyy.py'], # change to windows=[...]
options = {
"py2exe": { "dll_excludes": ["MSVCP90.dll"],
"packages": packages,
"includes": includes }
}
)