8234.1.2
by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness. |
1 |
[buildout]
|
2 |
parts = |
|
3 |
scripts
|
|
8234.1.4
by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail. |
4 |
filetemplates
|
8234.1.2
by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness. |
5 |
tags
|
6 |
iharness
|
|
8234.1.4
by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail. |
7 |
i18n
|
8234.1.2
by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness. |
8 |
unzip = true |
9 |
||
10 |
develop = . |
|
11 |
||
12 |
[configuration]
|
|
13 |
instance_name = development |
|
14 |
||
8234.1.4
by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail. |
15 |
[filetemplates]
|
16 |
recipe = z3c.recipe.filetemplate |
|
8234.1.2
by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness. |
17 |
eggs = lp |
8234.1.4
by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail. |
18 |
# TODO: make mailman built in a more normal way
|
19 |
extra-paths = ${buildout:directory}/lib/mailman |
|
20 |
source-directory = buildout-templates |
|
8234.1.2
by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness. |
21 |
|
22 |
[scripts]
|
|
23 |
recipe = zc.recipe.egg |
|
24 |
eggs = lp |
|
25 |
# TODO: make mailman built in a more normal way
|
|
26 |
extra-paths = ${buildout:directory}/lib/mailman |
|
27 |
# note that any indentation is lost in initialization blocks
|
|
28 |
# TODO: can any of this environ indirection be made more direct?
|
|
29 |
initialization = import os |
|
30 |
os.environ['STORM_CEXTENSIONS'] = '1'
|
|
31 |
os.environ['LPCONFIG'] = '${configuration:instance_name}'
|
|
8234.1.4
by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail. |
32 |
entry-points = stxdocs=zope.configuration.stxdocs:main |
8234.1.2
by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness. |
33 |
|
34 |
[iharness]
|
|
35 |
recipe = zc.recipe.egg |
|
36 |
eggs = lp |
|
37 |
IPython
|
|
38 |
extra-paths = ${buildout:directory}/lib/mailman |
|
39 |
initialization = import os |
|
40 |
os.environ['STORM_CEXTENSIONS'] = '1'
|
|
41 |
os.environ['LPCONFIG'] = '${configuration:instance_name}'
|
|
42 |
entry-points = iharness=canonical.database.harness:ipython |
|
8234.1.3
by Gary Poster
make ipy work as intended |
43 |
scripts = iharness ipython=ipy |
8234.1.2
by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness. |
44 |
|
45 |
[tags]
|
|
46 |
recipe = z3c.recipe.tag:tags |
|
47 |
eggs = lp |
|
8234.1.4
by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail. |
48 |
|
49 |
[i18n]
|
|
50 |
recipe = z3c.recipe.i18n:i18n |
|
51 |
eggs = lp |
|
52 |
packages = canonical.launchpad |
|
53 |
domain = launchpad |
|
54 |
output = locales |
|
55 |
zcml = <include file="../../site.zcml" /> |