[wxPython-users] wxPython Application Signing - How?
Werner F. Bruhin
werner.bruhin at free.fr
Tue Dec 12 04:49:43 PST 2006
Hi,
bharling at futurenet.co.uk wrote:
> Hi,
>
> another question has presented itself when I recently tested our current project under Windows Vista. Is there any way to set the application publisher variable, to identify the application to windows security? I tried the SetVendor method of wx.App, but I gather that is more for registry modification actions.
>
> Is publisher identification something that can be done via python?
>
Are you using the settings in setup.py, used by py2exe and co, i.e.:
class MetaBase:
def __init__(self, **kw):
self.__dict__.update(kw)
self.version = VERSION_STRING
self.author = "yourname" # at least on Windows XP this goes
into Publisher if you look in Add/Remove Programs on the control panel
self.author_email = "youremail"
self.company_name = ""
self.copyright = "whatever"
self.url = "whatever"
self.download_url = "whatever"
self.trademark = ""
self.comments = ""
self.name = "app name"
self.description = "app description"
Werner
More information about the wxpython-users
mailing list