-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
60 lines (48 loc) · 1.13 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
[buildout]
develop = .
parts = test coverage-test coverage-report i18n i18ndude i18nall
[test]
recipe = zc.recipe.testrunner
eggs = zojax.askexpert [test]
[coverage-test]
recipe = zc.recipe.testrunner
eggs = zojax.askexpert [test]
defaults = ['--coverage', '../../coverage']
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coverage=coverage-report
arguments = ('coverage', 'coverage/report')
[versions]
buildout-script = 0.2a1
# this section named so that the i18n scripts are called bin/i18n...
[i18n]
recipe = z3c.recipe.i18n:i18n
packages = zojax.askexpert
eggs = zojax.askexpert
domain = zojax.askexpert
output = ${buildout:directory}/src/zojax/askexpert/locales
zcml =
[i18nall]
recipe = buildout_script
template_dir = ${buildout:directory}/scripts/
template = i18nall.in
[i18ndude]
recipe = zc.recipe.egg:scripts
eggs =
i18ndude
# base instance
[instance]
recipe = zc.zope3recipes:instance
application = app
zope.conf =
<zodb>
<demostorage>
</demostorage>
</zodb>
[app]
recipe = zc.zope3recipes:app
site.zcml = <include package="zojax.askexpert" />
eggs = zojax.askexpert
[zope3]
location = .