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 11:13 UTC
Read the original article Hit count: 332

Filed under:
|

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?

For my projects, I'm using buildout with djangorecipe and mr.developer.

© Stack Overflow or respective owner

Related posts about buildout

Related posts about python