[10:45:36] <AlecTaylor> So I have a github repo package in my requirements.txt. To programmatically install its requirements.txt, is there a solution that doesn't involve cloning/curling and unwrapping its requirements.txt manually, for each line of my top-level requirements.txt?
[11:02:17] <mgedmin> that's what install_requires in setup.py is for!
[11:07:53] <AlecTaylor> mgedmin: Yes, but what about requirements.txt?
[11:08:27] <mgedmin> those are for extras and things that are nice-to-have but not required
[11:08:35] <mgedmin> and they're not intended to be nested
[11:08:54] <AlecTaylor> Because I can't imagine you'd do `install_requires=with open('requirements.txt') as f: f.readlines()`
[11:09:50] <AlecTaylor> mgedmin: Does install_requires support all the fancy #egg= and DVCS stuff that requirements.txt supports?
[11:10:08] <AlecTaylor> Yeah, that's what I thought
[18:49:06] <exploreshaifali> hello! I use virtualenvwrapper for django devleopment. Today I observed a wired thing, when I run `python manage.py runserver` and check for python process running in another terminal, I get two python processes running with command `python manage.py` one inside virtualenvwrapper and another outside it
[18:49:30] <exploreshaifali> I am sure I didn't run any other server for django
[18:49:39] <exploreshaifali> any clues why is this happening?
[18:53:45] <Ivoz> exploreshaifali, can you repeatably observe this behaviour
[18:54:08] <exploreshaifali> Ivoz, since today morning I am checking, it is there
[18:54:36] <exploreshaifali> I have tested it with fresh new virtualenvwrapper env
[18:54:52] <exploreshaifali> still it behaved in same manner
[18:55:12] <Ivoz> not sure what you mean 'inside virtualenvwrapper'
[18:55:22] <Ivoz> virtualenvwrapper is mostly, just some shell scripts
[18:55:40] <exploreshaifali> let me dpaste you result here
[19:15:17] <Ivoz> marcoamorales, just shallow clone them with git commands, then pip install from the cloned dirs
[19:16:30] <Ivoz> exploreshaifali, i would recommend uwsgi, should be simple enough starting out https://uwsgi.readthedocs.org/en/latest/tutorials/Django_and_nginx.html