Hello,

I'm creating an app which needs additional resources. I'd like to put  
these resources in a folder in the /Resources in the .app, but I'm  
having trouble doing so..
My setup.py looks like this:

if sys.platform == 'darwin':
        setup(
                app=["avgui.py"],
                name="AutoViewerGUI",
                setup_requires=["py2app"],
                options=dict(py2app=dict(
                        plist='Info.plist',
                        resources='essentials/',
                        iconfile='avgui.icns',
                )),
        )

As you can see, I'm trying to include the 'essentials' folder to the  
app, but instead of adding the folder itself, py2app adds the files  
inside the folder.
Is there a way of making py2app recreate the 'essentials' folder  
inside the Resources folder in the app, instead of just copying the  
files to it?

Thanks in advance!
_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig

Reply via email to