여러 검색 끝에 알아낸 원포인트 솔루션!


from py2exe.build_exe import py2exe

from distutils.core import setup

setup(options = {'py2exe': {'bundle_files': 1, "dll_excludes":['w9xpopen.exe'],"compressed":1 }}, windows = [{'script': "ccc.py"}], zipfile = None)


위에서 ccc.py에 원하는 파일 이름을 쓰면 된다.


간단히 해보니 pyQT4 라이브러리가 들어가도 10Mb 정도밖에 안되네. 

+ Recent posts