欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

py2exe

程序员文章站 2022-06-09 15:29:44
...
from distutils.core import setup
import py2exe
setup(console=["E:\\PyWk\\nodepad_py\\wxpython\\1\\Spare.py"], options={"py2exe":{"dll_excludes":["MSVCP90.dll"]}})



# mysetup.py 
from distutils.core import setup 
import glob 
import py2exe 
 
setup(console=["helloworld.py"], 
      data_files=[("bitmaps", 
                   ["bm/large.gif", "bm/small.gif"]), 
                  ("fonts", 
                   glob.glob("fonts\\*.fnt"))], 
) 
相关标签: wxPython Python