【发布时间】:2014-03-22 03:49:05
【问题描述】:
当我在构建程序后查看属性窗口时,它应该给我版本号和描述的地方是空白的。这是我的代码
import sys
from cx_Freeze import setup, Executable
exe = Executable(
script = "ROT13.py",
initScript = None,
base = None,
targetName = "ROT13.exe",
copyDependentFiles = True,
compress = True,
appendScriptToExe = True,
appendScriptToLibrary = True,
icon = "blah.png",
)
setup(
name = "ROT13 Translator",
version = "0.1",
description = "A ROT13 Translator",
executables = [Executable("ROT13.py", base = "Console")]
)
为什么这不起作用?
【问题讨论】:
-
属性窗口是如何生成的?您使用的是什么 GUI 工具包?
标签: python-3.x cx-freeze