""" Setup script for Elfweave and python ELF library. """ from distutils.core import setup try: import py2exe except: print "py2exe not found. Unable to create a windows executable." setup( # Generic disutils arguments name='pyelf', version='0.1', packages=['elf', 'weaver'], scripts=["elfweaver"], # Py2Exe arguments console=["elfweaver"], zipfile = None 하나의 파일로 묶기 setup.py py2exe --bundle 1