In your file setup.pyat the root of your project, you just need to list all the dependencies that you have in requires.
Then when your virtualenv is activated, you will run
python setup.py develop
This will install the missing dependencies for your current virtualenv.
Example:
requires = ['pyramid',
'WebError',
'pymongo',
'mock',
'formencode']
source
share