将存储库 url 添加到项目 setup.py 中的 install_requires
我正在开发一个 django 应用程序,它依赖于私有应用程序 bitbucket 存储库,例如 ssh:/[email protected]/username/my -django-应用程序。 是否可以将此网址添加到我的 install_requires 列表中 设置.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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道你是否可以使用setuptools来做到这一点,但是可以使用distribute(可以将其视为新的setuptools)。检查 分发文档中 PyPI 部分中没有的依赖项< /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.