forked from supercodepoet/django-merlin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
buildout.cfg
59 lines (50 loc) · 885 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
52
53
54
55
56
57
58
59
[buildout]
allow-picked-versions = false
develop = .
versions = versions
parts =
python
scripts
sphinx
test
eggs =
django-merlin
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[scripts]
recipe = zc.recipe.egg:scripts
eggs = ${buildout:eggs}
[sphinx]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
django
Sphinx
[test]
recipe = pbp.recipe.noserunner
working-directory = src
eggs = ${buildout:eggs}
BeautifulSoup
coverage
django
defaults =
--with-coverage
--cover-package=merlin
--nocapture
--nologcapture
--logging-clear-handlers
--verbosity=1
[versions]
BeautifulSoup = 3.1.0.1
coverage = 3.3.1
distribute = 0.6.14
django = 1.2.1
docutils = 0.7
Jinja2 = 2.5.2
nose = 0.11.4
pbp.recipe.noserunner = 0.2.6
Pygments = 1.3.1
Sphinx = 1.0.3
zc.buildout = 1.5.0b2
zc.recipe.egg = 1.2.3b2