forked from benoitbryon/rst2rst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
51 lines (46 loc) · 954 Bytes
/
buildout.cfg
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
51
# Main buildout configuration file.
[buildout]
extensions = buildout-versions
versions = versions
parts =
rst2rst
testing
releaser
# Configure directories: put buildout generated files in lib/buildout instead
# of in current directory.
bin-directory = bin
develop-eggs-directory = lib/buildout/develop-eggs
downloads-directory = lib/buildout/downloads
eggs-directory = lib/buildout/eggs
installed = lib/buildout/.installed.cfg
parts-directory = lib/buildout/parts
# Development.
develop = ./
[rst2rst]
recipe = zc.recipe.egg
eggs =
rst2rst
[testing]
recipe = zc.recipe.egg
eggs =
${rst2rst:eggs}
bpython
nose
rednose
coverage
[releaser]
recipe = zc.recipe.egg
eggs = zest.releaser
[versions]
buildout-versions = 1.7
zc.recipe.egg = 1.3.2
docutils = 0.9.1
zc.buildout = 1.5.2
# testing part.
bpython = 0.11
coverage = 3.5.2
nose = 1.1.2
python-termstyle = 0.1.9
rednose = 0.3
# releaser part.
zest.releaser = 3.37