我想让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。