How to make setuptools clone git dependencies recursively?

半城伤御伤魂 提交于 2019-12-10 14:58:39

问题


I want to let setuptools install Phoenix in my project and thus added

setup(
    ...
    dependency_links = [
        "git+https://github.com/wxWidgets/Phoenix.git#egg=Phoenix"
    ],
    install_requires = ["Phoenix"],
    ...
)

to my setup.py, but Phoenix' setuptools setup depends on a recursive git clone. How to tell the setuptools setup of my project to do git clone --recursive for Phoenix?

Defining a git alias with git config --global alias.clone 'clone --recursive' doesn't change anything.

I'm using setuptools 18.2 with python 2.7 on Ubuntu 15.04.

来源:https://stackoverflow.com/questions/32386794/how-to-make-setuptools-clone-git-dependencies-recursively

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!