forked from russell/slick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildout.cfg
More file actions
50 lines (40 loc) · 845 Bytes
/
buildout.cfg
File metadata and controls
50 lines (40 loc) · 845 Bytes
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
[buildout]
parts =
test
pylint
py
clonedigger
sphinxbuilder
eggs =
slick
develop = .
index = http://code.arcs.org.au/eggproxy
find-links =
http://code.arcs.org.au/pypi/MyProxyClient/
http://code.arcs.org.au/pypi/arcs.shibboleth.client/
http://code.arcs.org.au/pypi/arcs.gsi/
[py]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = py
scripts = python
[test]
recipe = pbp.recipe.noserunner
eggs = slick
[sphinxbuilder]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs
build = ${buildout:directory}/docs
eggs = ${buildout:eggs}
[clonedigger]
recipe = zc.recipe.egg
eggs =
clonedigger
${buildout:eggs}
[pylint]
recipe = zc.recipe.egg
eggs =
${buildout:eggs}
logilab.pylintinstaller
entry-points = pylint=pylint.lint:Run
arguments = sys.argv[1:]