forked from apierleoni/BioGraPy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
buildout.cfg
65 lines (59 loc) · 1.28 KB
/
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
60
61
62
63
64
65
[buildout]
parts =
test
# coverage
docs
pylint
py
eggs =
matplotlib >=1.00
develop = .
[py]
recipe = zc.recipe.egg
eggs = biograpy
interpreter = py
#[test]
#recipe = pbp.recipe.noserunner
#eggs = biograpy
#defaults =
# --verbosity=7
# --with-doctest
# --doctest-extension=txt
# -m biograpy
[test]
recipe = zc.recipe.testrunner
eggs =
biograpy
script = test
#[coverage]
#recipe = pbp.recipe.noserunner
#eggs =
# coverage
# biograpy
#defaults =
# --verbosity=3
# --with-doctest
# --doctest-extension=txt
# --with-coverage
# --cover-erase
# --cover-package=biograpy
# --cover-html
# --cover-html-dir=${buildout:directory}/docs/coverage
[docs]
recipe = collective.recipe.sphinxbuilder
source = biograpy:docs
build = ${buildout:directory}/docs
outputs =
html
pdf
[pylint]
recipe = zc.recipe.egg
eggs = pylint
entry-points = pylint=pylint.lint:Run
arguments = sys.argv[1:]+[
'--output-format=html',
'--import-graph=${buildout:directory}/docs/pylint_biograpy.dot',
'--ext-import-graph=${buildout:directory}/docs/pylint_biograpy_external.dot',
'--int-import-graph=${buildout:directory}/docs/pylint_biograpy_internal.dot',
'--init-import=y',
'${buildout:directory}/src/biograpy/graphics']