~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to buildout.cfg

  • Committer: Barry Warsaw
  • Date: 2009-11-24 03:20:48 UTC
  • Revision ID: barry@python.org-20091124032048-wi6uoch11nlyksb7
* Switch to distribute from setuptools.
* Remove the dependency on setuptools_bzr and use a MANIFEST.in instead

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
[buildout]
2
2
parts =
 
3
    docs
 
4
    filetemplates
3
5
    interpreter
 
6
    pylint
 
7
    tags
4
8
    test
5
9
unzip = true
6
10
develop = .
11
15
eggs =
12
16
    mailman
13
17
 
 
18
[tags]
 
19
recipe = z3c.recipe.tag:tags
 
20
eggs = mailman
 
21
 
14
22
[test]
15
23
recipe = zc.recipe.testrunner
16
24
eggs =
17
25
    mailman
18
26
defaults = '--tests-pattern ^tests --exit-with-status'.split()
19
27
# Hack in extra arguments to zope.testrunner.
20
 
initialization = from mailman.testing import initialize;
21
 
    initialize('${buildout:directory}')
 
28
initialization = from mailman.testing.layers import ConfigLayer;
 
29
    ConfigLayer.hack_options_parser()
 
30
 
 
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
 
38
 
 
39
[filetemplates]
 
40
recipe = z3c.recipe.filetemplate
 
41
source-directory = .buildout
 
42
package = mailman
 
43
eggs = mailman
 
44
 
 
45
[pylint]
 
46
recipe = zc.recipe.egg
 
47
eggs =
 
48
    pylint
 
49
entry-points = pylint=pylint.lint:Run
 
50
arguments = sys.argv[1:]