1

我想使用 buildout 而不是 virtualenv。这个决定意味着我不希望 virtualenv 被偷偷带入我的工具包中,所以我正在寻找一种方法来告诉 gp.recipe.pip不要安装 virtualenv meme 病毒,或者,一种从 git repos 安装软件包的方法用于 django/djangorecipe。

想法?

4

1 回答 1

5

当然,您想在构建中使用mr.developer

具体来说,(取自 mr.developer 页面),例如:

[buildout]
extensions = mr.developer
auto-checkout = my.package

[sources]
my.package = svn http://example.com/svn/my.package/trunk update=true
some.other.package = git git://example.com/git/some.other.package.git

这将为您提供您从 git 获得的软件包,作为已开发的鸡蛋安装到您的构建中。

于 2011-06-09T20:10:56.013 回答