buildout.cfg
changeset 29 035058514c2d
parent 28 ec82f750a462
child 42 cb2a0e2d3bbf
equal deleted inserted replaced
28:ec82f750a462 29:035058514c2d
     1 [buildout]
     1 [buildout]
     2 develop = .
     2 develop = .
     3 parts = package test
     3 parts = package i18n test
     4 newest = false
       
     5 eggs-directory = /var/local/ztfy/eggs
       
     6 
       
     7 # These settings pin egg versions to the Zope 3.4.0 Known Good Set
       
     8 # if you want to upgrade the KGS version, you need to change the URL
       
     9 # below. If you will comment/remove these settings, you'll get the
       
    10 # latest versions of Zope eggs that are not guaranteed to work well
       
    11 # together.
       
    12 extends = /var/local/ztfy/eggs/versions.cfg
       
    13 versions = versions
       
    14 
     4 
    15 [package]
     5 [package]
    16 recipe = zc.recipe.egg
     6 recipe = zc.recipe.egg
    17 eggs = ztfy.utils
     7 eggs = ztfy.utils
       
     8        zc.set
    18        zope.app.zapi
     9        zope.app.zapi
       
    10 
       
    11 [i18n]
       
    12 recipe = z3c.recipe.i18n:i18n
       
    13 eggs = ${package:eggs}
       
    14        z3c.recipe.i18n
       
    15 packages = ztfy.utils
       
    16 domain = ztfy.utils
       
    17 output = ztfy/utils/locales
       
    18 zcml = <include file="configure.zcml" />
    19 
    19 
    20 [test]
    20 [test]
    21 recipe = zc.recipe.testrunner
    21 recipe = zc.recipe.testrunner
    22 eggs = ztfy.utils [test]
    22 eggs = ztfy.utils [test]