forked from plone/bobtemplates.plone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
92 lines (73 loc) · 1.69 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[buildout]
parts =
scripts
test
test-plone_addon
test-plone_addon-nested
alltests
code-analysis
releaser
check-readme
develop = .
show-picked-versions = true
[scripts]
recipe = zc.recipe.egg
dependent-scripts = true
eggs =
bobtemplates.plone [test]
mr.bob
[test]
# This section is only here to generate the nosetests script a second
# time under a different name: 'test'.
<= scripts
scripts = nosetests=test
[test-plone_addon]
recipe = collective.recipe.template
addon_name = test.plone_addon
input = addon_test.template.sh
output = ${buildout:directory}/bin/test-plone_addon
mode = 755
[test-plone_addon-nested]
recipe = collective.recipe.template
addon_name = test.nested.plone_addon
input = addon_test.template.sh
output = ${buildout:directory}/bin/test-plone_addon-nested
mode = 755
[alltests]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
bin/test
bin/test-plone_addon
bin/test-plone_addon-nested
output = ${buildout:directory}/bin/alltests
mode = 755
[code-analysis]
recipe = plone.recipe.codeanalysis
directory = ${buildout:directory}
flake8-exclude = bootstrap.py,bootstrap-buildout.py,docs,lib,bin,*.egg.,omelette
flake8-max-complexity = 15
flake8-extensions =
flake8-blind-except
flake8-debugger
flake8-coding
[releaser]
recipe = zc.recipe.egg
eggs =
zest.releaser
readme
[check-readme]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
python ${buildout:directory}/setup.py check -r -s
output = ${buildout:directory}/bin/check-readme
mode = 755
[versions]
setuptools = 33.1.1
zc.buildout = 2.8.0
flake8 = 3.3.0
mr.bob =
flake8-coding = 1.3.0
pycodestyle = 2.3.1
zc.recipe.egg = 2.0.3