如何使setuptools以递归方式克隆git依赖项?

时间:2015-09-03 23:09:02

标签: python git setuptools

我想让setuptools在我的项目中安装Phoenix,然后添加

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

到我的setup.py,但Phoenix' setuptools设置取决于递归git克隆。如何告诉setuptools我的项目设置为git clone --recursive执行Phoenix

使用git定义git config --global alias.clone 'clone --recursive'别名并不会改变任何内容。

我在Ubuntu 15.04上使用setuptools 18.2和python 2.7。

0 个答案:

没有答案