forked from plomino/Plomino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
102 lines (78 loc) · 1.99 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
[buildout]
index = https://pypi.org/simple/
extends = http://dist.plone.org/release/5.0-latest/versions.cfg
extensions = mr.developer
newest = false
parts =
instance
test
code-analysis
releaser
develop = .
auto-checkout =
plone.restapi
plone.rest
sources = sources
[remotes]
plone = git://github.com/plone
plone_push = [email protected]:plone
[sources]
plone.restapi = git ${remotes:plone}/plone.restapi.git pushurl=${remotes:plone_push}/plone.restapi.git
plone.rest = git ${remotes:plone}/plone.rest.git pushurl=${remotes:plone_push}/plone.rest.git
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
eggs =
Plone
Pillow
plone.reload
Products.CMFPlomino [test]
environment-vars =
zope_i18n_compile_mo_files true
[code-analysis]
recipe = plone.recipe.codeanalysis
directory = ${buildout:directory}/src/Products
flake8-exclude = bootstrap.py,bootstrap-buildout.py,docs,*.egg.,omelette
flake8-max-complexity = 15
flake8-extensions =
flake8-blind-except
flake8-debugger
flake8-coding
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[test]
recipe = zc.recipe.testrunner
eggs = ${instance:eggs}
defaults = ['-s', 'Products.CMFPlomino', '--auto-color', '--auto-progress']
[robot]
recipe = zc.recipe.egg
eggs =
${test:eggs}
plone.app.robotframework[debug,ride,reload]
[releaser]
recipe = zc.recipe.egg
eggs = zest.releaser
[versions]
# use latest version of setuptools
setuptools =
# Don't use a released version of Products.CMFPlomino
Products.CMFPlomino =
# override some version pinning from Plone:
plone.schema = 1.2.0
# development dependencies (tools and pre commit hook)
plone.recipe.codeanalysis = 2.0
# Required by:
# plone.recipe.codeanalysis==2.0
flake8 = 2.4.1
flake8-coding = 1.1.0
flake8-debugger = 1.4.0
flake8-plone-api = 0.5
flake8-quotes = 0.0.1
# Required by:
# plone.recipe.codeanalysis==2.0
check-manifest = 0.25
# Required by:
# plone.recipe.codeanalysis==2.0
zptlint = 0.2.4