> > > I don't know. How do I translate > > pip install hg+ssh://[email protected]/cghub/cghub-cloud-agent@default > > with cghub-cloud-agent's setup.py being > > setup( > name="cghub-cloud-agent", > version="1.0.dev1", > install_requires=[ > 'cghub-cloud-lib>=1.0.dev1', > 'cghub-python-lib>=1.4.dev1', ... > ], > dependency_links=[ > 'hg+ssh:// > [email protected]/cghub/cghub-python-lib@default#egg=cghub-python-lib-1.4.dev1 > ', > 'hg+ssh:// > [email protected]/cghub/cghub-cloud-lib@default#egg=cghub-cloud-lib-1.0.dev1 > ' > ], > ) > > into a use of --find-links? >
--find-links assumes packaging. if you don't package, it doesn't help you. you're left putting all the vcs urls into a requirements file for your top-level app.
_______________________________________________ Distutils-SIG maillist - [email protected] https://mail.python.org/mailman/listinfo/distutils-sig
