# helloweb - programs to say hello to the Web in various languages [buildout] extends = ../git/buildout.cfg parts = helloweb-python # repository with examples [helloweb-repository] recipe = slapos.recipe.build:gitclone git-executable = ${git:location}/bin/git repository = https://lab.nexedi.com/nexedi/helloweb.git revision = 686dd5dd623728750ec30514173a7be36fab3a06 location = ${buildout:parts-directory}/helloweb # -*- python -*- [helloweb-egg] recipe = zc.recipe.egg:develop egg = helloweb setup = ${helloweb-repository:location}/python/ [helloweb-python] recipe = zc.recipe.egg:scripts eggs = ${helloweb-egg:egg} scripts = helloweb=helloweb-python