If your users already have Python installed then you could just create a self-extracting, self-executing .exe that contains only your scripts and necessary files. I belive many of the popular zip utilities have the ability to do this. The free info-zip does this as well: http://www.info-zip.org (but you have to recompile it with the appropriate switch turned on).
If they don't have Python installed then you have no choice but to include the python DLLs, libraries, etc. as that's your runtime environment necessary to run your Python application. HTH chris patton wrote: > I need to convert a python file to an '.exe'. I've tried py2exe, and I > don't like it because you have to include that huge dll and libraries. > > Thanks for the Help!! > -- http://mail.python.org/mailman/listinfo/python-list