-
Notifications
You must be signed in to change notification settings - Fork 14
/
buildout.cfg
75 lines (65 loc) · 1.44 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
[buildout]
extends =
https://zopefoundation.github.io/groktoolkit/releases/3.0/grok-versions.cfg
parts =
interpreter
mkdirs
test
zope_conf
site_zcml
deploy_ini
debug_ini
develop =
.
grokwiki
versions = versions
[sources]
[versions]
grok =
setuptools = >= 65.5.1
zc.buildout = >= 3.0
collective.recipe.template = >= 2.2
[interpreter]
recipe = zc.recipe.egg
eggs =
PasteScript
grokwiki
scripts = paster
interpreter = grokpy
[mkdirs]
recipe = z3c.recipe.mkdir
paths =
${zope_conf:filestorage}
${zope_conf:logfiles}
[test]
recipe = zc.recipe.testrunner
eggs =
grok
grok[test]
defaults = ['--tests-pattern', '^f?tests$', '-v', '--auto-color']
[zope_conf]
recipe = collective.recipe.template
input = etc/zope.conf.in
output = ${buildout:parts-directory}/etc/zope.conf
filestorage = ${buildout:directory}/var/filestorage
logfiles = ${buildout:directory}/var/log
[site_zcml]
recipe = collective.recipe.template
input = etc/site.zcml.in
output = ${buildout:parts-directory}/etc/site.zcml
[deploy_ini]
recipe = collective.recipe.template
input = etc/deploy.ini.in
output = ${buildout:parts-directory}/etc/deploy.ini
[debug_ini]
recipe = collective.recipe.template
input = etc/debug.ini.in
output = ${buildout:parts-directory}/etc/debug.ini
# python3 port: disabled.
# This section is named so that the zpasswd utility is
# called `zpasswd`
[zpasswd]
recipe = z3c.recipe.dev:script
eggs = grokwiki
module = zope.app.server.zpasswd
method = main