I have made a very simple browser using Qwebview in PyQt. Now i want to package it as an installer to distribute it. I have tried out py2exe. But after i do the command:
python setup.py py2exe and then try and run the .exe file created, i get an error, "no module named sip found". please help me where am i going wrong. My setup.py code is as follows: from distutils.core import setup setup(name = "Aura Browser", version = "0.1", description = "A tiny Web Browser", author = "Anshul kumar Jain", author_email = "ans...@seeta.in", url = "http://seeta.in/j/team.html", packages = [""], data_files = [("browser/images", ["images/back.png", "images/home.png", "images/reload.png", "images/next.png", "images/stop.png",])] ) the code has 'browser.py' as main file and a Qt python class file 'httpWidget.py' Please help me sort out the problem. Thanks
_______________________________________________ PyQt mailing list PyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt