-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
81 lines (74 loc) · 1.65 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
# """
# @file buildout.cfg
# @date 2008-09-16
# Contributors can be viewed at:
# http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt
#
# $LicenseInfo:firstyear=2008&license=apachev2$
#
# Copyright 2008, Linden Research, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
# or in
# http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt
#
# $/LicenseInfo$
# """
[buildout]
parts =
pyogp.lib.base
pyogp.lib.client
pyogp.apps
scripts
pyogp_cli
tests
[pyogp.lib.base]
recipe = mercurialrecipe
repository = http://bitbucket.org/enus_linden/pyogp.lib.base-maint/
[pyogp.lib.client]
recipe = mercurialrecipe
repository = http://bitbucket.org/enus_linden/pyogp.lib.client-maint/
[pyogp.apps]
recipe = mercurialrecipe
repository = http://bitbucket.org/enus_linden/pyogp.apps-maint/
[scripts]
recipe = zc.recipe.egg:scripts
eggs =
pyogp.apps
llbase
uuid
wsgiref
eventlet
extra-paths =
${pyogp.lib.base:location}
${pyogp.lib.client:location}
${pyogp.apps:location}
[pyogp_cli]
recipe = zc.recipe.egg
eggs =
setuptools
llbase
uuid
wsgiref
eventlet
extra-paths =
${pyogp.lib.base:location}
${pyogp.lib.client:location}
${pyogp.apps:location}
interpreter = pyogp_interpreter
[tests]
recipe = pbp.recipe.noserunner
eggs =
uuid
llbase
eventlet
wsgiref
coverage
extra-paths =
${pyogp.lib.base:location}
${pyogp.lib.client:location}
${pyogp.apps:location}
script = unittests