source: products/quintagroup.transmogrifier/branches/plone-2.1/plone.app.transmogrifier/buildout.cfg @ 3218

Last change on this file since 3218 was 342, checked in by chervol, 18 years ago

create tags

File size: 1.2 KB
Line 
1[config]
2plone-version = >=3.1,<3.2dev
3package = plone.app.transmogrifier
4
5[buildout]
6
7parts = test
8
9find-links =
10    http://dist.plone.org
11    http://download.zope.org/ppix/
12    http://download.zope.org/distribution/
13    http://effbot.org/downloads
14    http://svn.plone.org/svn/collective/collective.transmogrifier/trunk#egg=collective.transmogrifier-dev
15
16eggs = 
17develop = .
18
19[plone]
20recipe = plone.recipe.plone${config:plone-version}
21
22[zope2]
23recipe = plone.recipe.zope2install
24url = ${plone:zope2-url}
25additional-fake-eggs = ZODB3
26
27[instance]
28recipe = plone.recipe.zope2instance
29zope2-location = ${zope2:location}
30user = admin:admin
31
32eggs =
33   zope.testing == 3.5
34   ${buildout:eggs}
35   ${plone:eggs}
36   ${config:package}
37   collective.transmogrifier>=0.1dev
38
39zcml =
40    ${config:package}
41
42products =
43    ${plone:products}
44
45[test]
46recipe = zc.recipe.egg
47eggs =
48   ${instance:eggs}
49   plone.recipe.zope2instance
50   
51extra-paths =
52        ${zope2:location}/lib/python
53entry-points =
54    test=plone.recipe.zope2instance.ctl:main
55       
56arguments = ["-C", "${instance:location}/etc/zope.conf", "test", "-m", "${config:package}", "--keepbytecode", "--exit-with-status"] + sys.argv[1:]
Note: See TracBrowser for help on using the repository browser.