I have a Pylons app that I am ready to deploy for the first time to production. It has a simple set of requirements listed in setup.py:
install_requires=[
"Pylons>=1.0",
"Jinja2",
"couchdb",
"python-openid",
],
When I run "python setup.py bdist_egg" it seems to create the egg file properly. When I copy the egg file to my production virtual environment and install it, however, none of my dependencies are installed. I unzipped the egg file and found that, indeed, there is no requires.txt inside. There is definitely a requires.txt that was created in the .egg-info directory when I ran bdist_egg. Am I runnning this command incorrectly?