Buildout: when to use buildout:eggs and when to install via zc.recipe.egg ?
Posted
by chiggsy
on Stack Overflow
See other posts from Stack Overflow
or by chiggsy
Published on 2010-04-26T10:00:39Z
Indexed on
2010/04/26
10:03 UTC
Read the original article
Hit count: 446
There seem to be more than one way to install eggs into a buildout.
Way 1:
[buildout]
...
eggs =
eggname
othereggname
...
Way 2:
[buildout]
...
parts = eggs
[eggs]
recipe = zc.recipe.egg
eggs = eggname
= othereggname
Both ways work. ( variation on way 2 would be to install each requirement as a separate part. )
What is the difference between these 2 methods?
© Stack Overflow or respective owner