I tried the package my application which has only two files, one for the GUI (wxPython) and a Library used by the GUI. Below is my setup.py code:
from distutils.core import setup
import py2exe
setup(name="U51 Converter", scripts=['convertapp.pyw'])
class Target:
def __init__(self, **kw):
self.__dict__.update(kw)
# for the versioninfo resources
self.version = "0.01.1"
self.company_name = "NovaSteps, Inc"
self.copyright = "Copyright (c) 2008 NovaSteps, Inc."
self.name = "U51 Transcoder"
I ran the following command: python setup.py py2exe
What I got was a buld and dist folder, but my app is not present in there. What am I doing wrong?