buildout.cfg 806 Bytes
Newer Older
1 2
[buildout]
extends =
Łukasz Nowak's avatar
Łukasz Nowak committed
3
  ../lxml-python/buildout.cfg
4 5 6 7

parts =
  cloudooo

8 9 10
[cloudooo-develop]
recipe = zc.recipe.egg:develop
setup = ${cloudooo-repository:location}
11

12
[cloudooo-repository]
13
recipe = slapos.recipe.build:gitclone
14 15
repository = http://git.erp5.org/repos/cloudooo.git
branch = master
16
git-executable = ${git:location}/bin/git
17 18 19

[cloudooo]
recipe = zc.recipe.egg
20
dependency = ${cloudooo-develop:recipe}
21 22
eggs =
  ${lxml-python:egg}
23
  PasteScript
24 25 26 27 28 29 30 31 32 33
  python-magic
  psutil
  WSGIUtils
  cloudooo
entry-points =
  main=cloudooo.paster_application:application
  cloudooo_tester=cloudooo.bin.cloudooo_tester:main
  runCloudoooUnitTest=cloudooo.tests.runHandlerUnitTest:run
  runCloudoooTestSuite=cloudooo.tests.runTestSuite:run
scripts = 
34
  paster=cloudooo_paster
35 36
  runCloudoooUnitTest
  runCloudoooTestSuite