Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add repository url to install_requires in project's setup.py

I'm developing a django app which depends on an app in a private bitbucket repository, for example ssh:/[email protected]/username/my-django-app. is it possible to add this url to the list of install_requires in my setup.py? tried various possibilities, but none worked.

like image 286
jmoritz Avatar asked Oct 07 '10 10:10

jmoritz


1 Answers

I don't know if you can do this with setuptools, but it's possible with distribute (wich can be consider as the new setuptools). Check Dependencies that aren’t in PyPI sections in distribute documentation.

like image 81
ohe Avatar answered Sep 28 '22 08:09

ohe