py2exe 编译ico图标的代码
程序员文章站
2023-10-17 17:45:35
复制代码 代码如下: #setup.py from distutils.core import setup import py2exe setup( # targets t...
复制代码 代码如下:
#setup.py
from distutils.core import setup
import py2exe
setup(
# targets to build
windows = [{"script":"edi_view.py", "icon_resources": [(1, "edi.ico")]} ]
)
上一篇: python赋值操作方法分享