当前位置:主页 > 软件编程 > Python代码 >

py2exe 编译ico图标的代码

时间:2020-10-20 15:07:50 | 栏目:Python代码 | 点击:

复制代码 代码如下:

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

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

您可能感兴趣的文章:

相关文章