-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
70 lines (60 loc) · 1.55 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
[buildout]
develop =
.
extern/pyon
extern/coverage-model
extern/multicorn
parts =
python
eggs =
externalization
unzip = true
show-picked-versions = true
# extends = versions.cfg
versions = versions
# Using our server instead of Pypi for indexing when Pypi goes wrong
# index = http://sddevrepo.oceanobservatories.org/releases/
# When set to false, buildout and its recipe versions must be
# explicitly pinned down and defined.
allow-picked-versions = true
# Tells buildout where to download packages in addition to Pypi.
find-links =
http://sddevrepo.oceanobservatories.org/releases/
[versions]
[gcoverage_patch]
recipe =
zc.recipe.egg
eggs =
coverage==3.5.2pl1
gevent==0.13.7.1
find-links =
http://sddevrepo.oceanobservatories.org/releases/coverage-3.5.2pl1.tar.gz
http://sddevrepo.oceanobservatories.org/releases/gevent-0.13.7.1.tar.gz
[base_config]
scripts =
nosetests
pycc
pyccd
control_cc
generate_interfaces
store_interfaces
clear_couch
ipython
coverage
entry-points =
pycc=scripts.pycc:entry
pyccd=scripts.pyccd:start_debugging
control_cc=scripts.control_cc:main
generate_interfaces=scripts.generate_interfaces:main
store_interfaces=scripts.store_interfaces:main
clear_couch=pyon.datastore.clear_couch_util:main
ipython=scripts.ipython:main
nosetests=nose:run_exit
coverage=coverage:main
[python]
recipe = zc.recipe.egg
interpreter = python
scripts = ${base_config:scripts}
entry-points = ${base_config:entry-points}
eggs =
${buildout:eggs}