-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
55 lines (45 loc) · 952 Bytes
/
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
[buildout]
parts =
distutils-dir
pyclips
nl
ipython
test
develop =
src/nl
eggs =
nl
ipdb
ipython
coverage
versions = versions
[distutils-dir]
recipe = z3c.recipe.mkdir
paths = downloads/distutils
[pyclips]
recipe = zerokspot.recipe.distutils
urls = http://ufpr.dl.sourceforge.net/project/pyclips/pyclips/pyclips-1.0/pyclips-1.0.7.348.tar.gz
[nl]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
scripts = plot_ph22
extra-paths = ${ipython:extra-paths}
[ipython]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
scripts = ipython
extra-paths = ${buildout:directory}/parts/pyclips/lib/python2.6/site-packages
[test]
recipe = pbp.recipe.noserunner
eggs = ${buildout:eggs}
extra-paths = ${ipython:extra-paths}
[versions]
coverage = 3.4
ipdb = 0.2
ipython = 0.10.1
nose = 0.11.4
pbp.recipe.noserunner = 0.2.6
z3c.recipe.mkdir = 0.3.1
zc.buildout = 1.5.2
zc.recipe.egg = 1.3.2
zerokspot.recipe.distutils = 0.1.2