当我在构建程序后查看属性窗口时,它应该给我的版本号和描述的位置是空白的。这是我的代码
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")]
)
为什么这不起作用?