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