여러 검색 끝에 알아낸 원포인트 솔루션!
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 정도밖에 안되네.
'Study > Computer' 카테고리의 다른 글
위도, 경도 검색 프로그램 (0) | 2014.05.09 |
---|---|
Too many open files 에러가 로그에 남을 때 (0) | 2014.04.07 |
sqlite3에서 fts3 사용할 때 not operator 사용법 (0) | 2014.02.26 |
python에서 line 줄바꿈없이 업데이트하기 (0) | 2014.01.23 |
python에서 list를 column형태로 출력하기. (0) | 2013.10.15 |