buildout.cfg 766 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 20 21

[cloudooo]
recipe = zc.recipe.egg
eggs =
  ${lxml-python:egg}
22
  PasteScript
23 24 25 26 27 28 29 30 31 32
  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 = 
33
  paster=cloudooo_paster
34 35
  runCloudoooUnitTest
  runCloudoooTestSuite