I am using cx_Freeze to compile a python script into a .msi install file. Upon reading this very helpful thread, I have been able to generate a shortcut to the compiled exe program during the install process. Additionally, I would like to display some kind of message to the user during the installation process. Is it possible to configure cx_Freeze accordingly? If not, how else could one go about it?
The relevant (simplified) bit of my code is:
from cx_Freeze import setup, Executable
options = {'optimize': 2}
executables = [Executable('program.py', base='Win32GUI', targetName='program.exe',
shortcutName='program', shortcutDir='ProgramMenuFolder')]
setup(name='program', options=options, executables=executables)