Howdy. I've created a simple, small new Pylons app that I am ready to
deploy to production. My setup.py file has this in it:
...
install_requires=[
"Pylons>=1.0",
"Jinja2",
"couchdb",
"python-openid",
],
...
If I look in the egg-info directory in my project, I can see a
requires.txt file that includes all of those in it. When I run python
setup.py bdist_egg, it seems to create the .egg file correctly.
On my production machine, I created an empty virtual environment,
copied my egg file over and installed with easy_install. However, no
dependencies whatsoever were installed. I unzipped the egg file and,
sure enough, there was no requires.txt inside the egg file. How do I
fix this? I am a little new to egg files.
--
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en.