-
Notifications
You must be signed in to change notification settings - Fork 3
/
buildout.cfg
125 lines (104 loc) · 2.31 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[buildout]
extends = http://dist.plone.org/release/5.1rc1/versions.cfg
show-picked-versions = true
extensions =
mr.developer
parts =
instance
test
code-analysis
coverage
omelette
robot
zopepy
develop = .
auto-checkout = *
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
environment-vars =
zope_i18n_compile_mo_files true
eggs =
Products.CMFPlone
Pillow
collective.sortedlisting [test]
[code-analysis]
recipe = plone.recipe.codeanalysis[recommended]
directory = ${buildout:directory}/src/collective
flake8-exclude = bootstrap.py,bootstrap-buildout.py,docs,*.egg.,omelette
flake8-max-complexity = 15
return-status-codes = False
[coverage]
recipe = zc.recipe.egg
eggs =
${test:eggs}
coverage
python-coveralls
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[test]
recipe = zc.recipe.testrunner
eggs = ${instance:eggs}
defaults = ['-s', 'collective.sortedlisting', '--auto-color', '--auto-progress']
[sources]
plone.app.z3cform = git https://github.com/plone/plone.app.z3cform.git branch=master
[zopepy]
recipe = zc.recipe.egg
eggs =
${instance:eggs}
${test:eggs}
interpreter = zopepy
scripts =
zopepy
plone-compile-resources
[robot]
recipe = zc.recipe.egg
eggs =
${test:eggs}
plone.app.robotframework[debug,ride,reload]
[versions]
# Don't use a released version of collective.sortedlisting
collective.sortedlisting =
# development dependencies (tools and pre commit hook)
PyYAML = 3.12
argh = 0.26.2
args = 0.1.0
check-manifest = 0.35
clint = 0.5.1
colorama = 0.3.7
configparser = 3.5.0
coverage = 4.0.3
enum34 = 1.1.6
flake8 = 3.3.0
flake8-blind-except = 0.1.1
flake8-coding = 1.3.0
flake8-debugger = 1.4.0
flake8-deprecated = 1.1
flake8-isort = 2.1.3
flake8-pep3101 = 1.0
flake8-plone-api = 1.2
flake8-plone-hasattr = 0.1
flake8-polyfill = 1.0.1
flake8-print = 2.0.2
flake8-quotes = 0.9.0
flake8-string-format = 0.2.3
flake8-todo = 0.7
isort = 4.2.5
mccabe = 0.6.1
pathtools = 0.1.2
pkginfo = 1.4.1
plone.recipe.codeanalysis = 2.2
plone.testing = 5.0.0
pycodestyle = 2.3.1
pyflakes = 1.5.0
python-coveralls = 2.7.0
requests-toolbelt = 0.7.1
testfixtures = 4.13.4
zc.buildout = 2.9.5
watchdog = 0.8.3
sh = 1.12.14
# mosaic testing dependency
plone.formwidget.multifile = 2.0
plone.jsonserializer = 0.9.3