forked from zopefoundation/Zope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
155 lines (136 loc) · 2.54 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
[buildout]
extensions = mr.developer
allow-picked-versions = false
develop = .
extends =
sources.cfg
versions.cfg
installed = .installed.cfg
parts =
test
zopescripts
alltests
ztktests
allpy
sphinx
checkversions
requirements
sources-dir = develop
auto-checkout =
[testenv]
PYTHONHASHSEED = random
[test]
recipe = zc.recipe.testrunner
script = test
environment = testenv
initialization =
import sys
import warnings
warnings.simplefilter('default')
eggs = Zope
[zopescripts]
recipe = zc.recipe.egg
interpreter = zopepy
eggs =
Zope[wsgi]
zodbupdate
[alltests]
recipe = zc.recipe.testrunner
script = alltests
environment = testenv
eggs =
AccessControl
Acquisition
DateTime
DocumentTemplate
ExtensionClass
MultiMapping
Persistence
zExceptions
Zope
# Test optional dependencies.
five.localsitemanager
Missing
Products.BTreeFolder2
Products.ZCatalog
Record
[ztktests]
recipe = zc.recipe.testrunner
script = ztktests
eggs =
zope.annotation
zope.browser
zope.browsermenu
zope.browserpage
zope.browserresource
zope.cachedescriptors
zope.component
zope.componentvocabulary
zope.configuration
zope.container
zope.contentprovider
zope.contenttype
zope.datetime
zope.deferredimport
zope.deprecation
zope.dottedname
zope.event
zope.exceptions
zope.filerepresentation
zope.formlib
zope.globalrequest
zope.i18n
zope.i18nmessageid
zope.interface
zope.lifecycleevent
zope.location
zope.pagetemplate
zope.processlifetime
zope.proxy
zope.ptresource
zope.publisher
zope.ramcache
zope.schema
zope.security
zope.sendmail
zope.sequencesort
zope.site[test]
zope.size
zope.structuredtext
zope.tal
zope.tales
zope.testbrowser[test]
zope.testing
zope.testrunner
zope.traversing
zope.viewlet
[allpy]
recipe = zc.recipe.egg
eggs = ${alltests:eggs}
interpreter = allpy
scripts = allpy
[make-docs]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
cd ${buildout:directory}/docs
make html
output = ${buildout:directory}/bin/make-docs
mode = 755
[sphinx]
=> make-docs
recipe = zc.recipe.egg
eggs =
Zope[docs]
Sphinx
scripts =
sphinx-build
[checkversions]
recipe = zc.recipe.egg
eggs = z3c.checkversions [buildout]
[requirements]
recipe = plone.recipe.command
command =
${zopescripts:bin-directory}/${zopescripts:interpreter} util.py
update-command = ${:command}
stop-on-error = yes