[10:52:06] <sam> now that dependency_links is deprecated, is there a way to automatically fetch dependencies from git upon installation of a package from git?
[10:52:52] <sam> i.e. I do "pip3 install git+http://git.lan/foo.git" and I would like git+http://git.lan/bar.git to be automatically installed if foo depends on it
[17:08:31] <agronholm> sam: you'll need to put your dependencies in a text file and then "pip 3 install -r requirements.txt" (or whatever you named it)
[17:53:34] <sam> agronholm: but I don’t have access requirements.txt when installing foo