* Update NEWS.txt and ALPHA.txt
[mailman.git] / buildout.cfg
blobe4f46a0fc0723ccf4271ee83267c386fbc1da141
1 [buildout]
2 parts =
3     interpreter
4     tags
5     test
6 unzip = true
7 develop = . /Users/barry/projects/lazr/megamerge
9 [interpreter]
10 recipe = zc.recipe.egg
11 interpreter = py
12 eggs =
13     lazr.config
14     lazr.delegates
15     locknix
16     mailman
17     munepy
18     storm
19     zope.interface
21 [tags]
22 recipe = z3c.recipe.tag:tags
23 eggs = mailman
25 [test]
26 recipe = zc.recipe.testrunner
27 eggs =
28     mailman
29 defaults = '--tests-pattern ^tests --exit-with-status'.split()
30 # Hack in extra arguments to zope.testrunner.
31 initialization = from mailman.testing.layers import ConfigLayer;
32     ConfigLayer.hack_options_parser()