buildout.cfg 675 Bytes
Newer Older
1 2 3 4 5 6
# helloweb - programs to say hello to the Web in various languages
[buildout]
extends =
  ../git/buildout.cfg

parts =
7
  helloweb-python
8 9 10 11 12 13 14


# repository with examples
[helloweb-repository]
recipe  = slapos.recipe.build:gitclone
git-executable = ${git:location}/bin/git
repository = https://lab.nexedi.com/nexedi/helloweb.git
15
revision = 686dd5dd623728750ec30514173a7be36fab3a06
16 17 18
location = ${buildout:parts-directory}/helloweb


19
# -*- python -*-
20 21 22 23 24
[helloweb-egg]
recipe  = zc.recipe.egg:develop
egg     = helloweb
setup   = ${helloweb-repository:location}/python/

25
[helloweb-python]
26 27
recipe  = zc.recipe.egg:scripts
eggs    = ${helloweb-egg:egg}
28
scripts = helloweb=helloweb-python