how can I make pyramid application install configure.zcml with other files.

2011-04-24 Thread Chung , Ha Nyung
I was trying to make my application load configuration from zcml file, and in development environment - when I'm running with paster serve command - everything worked well. But when I tried to run it in production environment integrated with apache using wsgi, it couldn't find configure.zcml

Re: how can I make pyramid application install configure.zcml with other files.

2011-04-24 Thread Michael Merickel
You need a MANIFEST.in file, or the other option is to install setuptools-git (assuming your files are under git) and package your application using python setup.py sdist. Michael On Sun, Apr 24, 2011 at 9:21 PM, Chung, Ha Nyung minorbl...@gmail.comwrote: I was trying to make my application

Re: how can I make pyramid application install configure.zcml with other files.

2011-04-24 Thread Chung , Ha Nyung
I edited MANIFEST.in and that works well. Thanks -- Chung, Ha Nyung minorblend (at) gmail (dot) com On Monday, April 25, 2011 at 11:32 AM, Michael Merickel wrote: You need a MANIFEST.in file, or the other option is to install setuptools-git (assuming your files are under git) and package