ビルドアウトに卵をインストールする方法は複数あるようです。
方法1:
[buildout]
...
eggs =
eggname
othereggname
...
方法2:
[buildout]
...
parts = eggs
[eggs]
recipe = zc.recipe.egg
eggs = eggname
= othereggname
どちらの方法でも機能します。(方法2のバリエーションは、各要件を個別のパーツとしてインストールすることです。)
これら2つの方法の違いは何ですか?
私のプロジェクトでは、djangorecipeとmr.developerでビルドアウトを使用しています。