Cleanup.
[mailman.git] / buildout.cfg
blob187a0cdbc802c9104dc79540819fd10ae0a79174
1 [buildout]
2 parts =
3     docs
4     filetemplates
5     interpreter
6     pylint
7     tags
8     test
9 unzip = true
10 develop = .
12 [interpreter]
13 recipe = zc.recipe.egg
14 interpreter = py
15 eggs =
16     mailman
18 [tags]
19 recipe = z3c.recipe.tag:tags
20 eggs = mailman
22 [test]
23 recipe = zc.recipe.testrunner
24 eggs =
25     mailman
26 defaults = '--tests-pattern ^tests --exit-with-status'.split()
27 # Hack in extra arguments to zope.testrunner.
28 initialization = from mailman.testing.layers import ConfigLayer;
29     ConfigLayer.hack_options_parser()
31 [docs]
32 recipe = z3c.recipe.sphinxdoc
33 eggs = mailman [docs]
34 index-doc = docs/README
35 default.css =
36 layout.html =
37 extensions = sphinxconf
39 [filetemplates]
40 recipe = z3c.recipe.filetemplate
41 source-directory = .buildout
42 package = mailman
43 eggs = mailman
45 [pylint]
46 recipe = zc.recipe.egg
47 eggs =
48     pylint
49 entry-points = pylint=pylint.lint:Run
50 arguments = sys.argv[1:]