com dll的Py2exe版本号

时间:2011-11-23 13:18:13

标签: python dll com version py2exe

有没有办法添加到py2exe创建版本标记的DLL?如果我生成一个新的dll,我需要查看哪些函数/ clases已经实现,我需要查看是否已经有一个更新的dll被日期或版本号标记(例如我自己创建了VN)。

1 个答案:

答案 0 :(得分:4)

使用版本参数,如:

setup(
    windows = [
              {'script': PyAppName,
               'icon_resources':[(0, Icon)],
               'dest_base' : Exe[:-4],
               'version' : AppVers,
               'company_name' : "JoaquinAbian",
               'copyright' : "No Copyrights",
               'name' : AppName 
              }
              ],

其中AppVers是您的程序版本

enter image description here