Re: [pygtk] Bundling GTK resources with py2exe

2011-10-25 Thread Jason Heeris
On 26 October 2011 09:07, Joel Rivera wrote: > of your software, if that is not what you want, just copy the dist directory > and create manually the shortcuts if you will. I read somewhere that it's possible to get Inno (or NSIS?) to extract the files to a temp dir (instead of installing) and ru

Re: [pygtk] Bundling GTK resources with py2exe

2011-10-25 Thread Joel Rivera
On Wed, 26 Oct 2011 08:48:12 +0800, Jason Heeris wrote: On 25 October 2011 23:52, Joel Rivera wrote: but a last step is that you need to package all of those files to a single installer, I use `Inno setup` for that matter, this is my working setup file 'setup.iss', which I just need to build

Re: [pygtk] Bundling GTK resources with py2exe

2011-10-25 Thread Jason Heeris
On 25 October 2011 23:52, Joel Rivera wrote: > but a last step is that you need to package all of > those files to a single installer, I use `Inno setup` for that matter, > this is my working setup file 'setup.iss', which I just need to build it > from `Inno setup`. Oh, I meant to ask: is this t

Re: [pygtk] Bundling GTK resources with py2exe

2011-10-25 Thread Joel Rivera
This what I do and it has been working the las couple of years with python 2.6 and gtk2: In the setup.py set the right libraries for pyexe to find the packages: setup(name='COMYSI Admin', # The main script with an icon windows = [{'script': 'COMYSIAdmin.pyw',

[pygtk] Bundling GTK resources with py2exe

2011-10-24 Thread Jason Heeris
I'm using Python 2.6 and PyGTK 2.22.6 from the all-in-one installer on Windows XP. I'm slowly making progress building a single-file executable (via py2exe) for my app, and I've gotten to the point where I need to know more about bundling up the GTK resources. Specifically, when I run my app as no