py2exe 编译ico图标的代码


复制代码 代码如下:

#setup.py
from distutils.core import setup
import py2exe

setup(
# targets to build
windows = [{"script":"EDI_VIEW.py", "icon_resources": [(1, "edi.ico")]} ]
)

相关内容

    暂无相关文章

评论关闭