
On Fri, 10 May 2002, Andy Todd wrote:
All,
In the latest version of PythonCard we need to include a configuration file with the application code. What this means is that we would like to include a file called stc-styles.cfg in our package and when someone does an install it needs to end up in /usr/lib/python2.2/site-packages/PythonCard (or C:\Python\Lib\site-packages\PythonCard on Windows).
I can get the file included in the MANIFEST and thus included in the zip
Hi, we ran into this with Gnosis_Utils as well - our "solution" (correct or not :-) is to let the "build" command run, then go through MANIFEST copying files to build/lib (or build/lib.ARCH, if you have extensions). Then, when the "install" command runs, it pulls files from the build/lib* dir and installs them. I can email you the setup file if you'd like to see it (not yet in the latest release ... Real Soon Now :-) I'm hoping there is a better answer, and I just don't know distutils well enough to come up with it ... frank
Regards, Andy