py2exe and win32com

py2exe, python, win32com

Solution

I've used `py2exe` for a project that depended on `win32com` as well as `pysvn`. It worked fine, no hassles.

That was using Python 2.5 and later 2.6. Note that `py2exe` doesn't support Python 3.x.

Problem

Can `py2exe` create standalone executables even ones requiring the `win32com` package? I've googled / searched SO to no avail.

Original source

Related problems