views:

16

answers:

1

Hi,

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.

A: 

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.

ohe