Py2exe version number for com dll

Is there a way to add to the dll that py2exe creates the version tag? If I create a new dll, I need to see which functions / clases have already been implemented, and I need to see if there is already a new dll marked by date or version number (for example, I created VN).

+4
source share
1 answer

Use the version parameter as in:

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

where AppVers is your version of the program

enter image description here

+4
source

Source: https://habr.com/ru/post/1382699/


All Articles