from distutils.core import setup import py2exe, sys, os sys.argv.append(\'py2exe\') setup( options = {\'py2exe\': {\'bundle_files\': 1}}, windows = [{\'script\
Yes. Are you making a windowing application or a console application? See the example setup.py files that came with py2exe.