buildout.cfg 1.06 KB
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
develop +=
  ${:parts-directory}/cloudooo-repository
10

11 12 13 14 15
[cloudooo-check-recipe]
recipe = plone.recipe.command
stop-on-error = true
update-command = ${:command}
command = grep parts ${buildout:develop-eggs-directory}/cloudooo.egg-link
16

17
[cloudooo-repository]
18
recipe = slapos.recipe.build:gitclone
19 20
repository = http://git.erp5.org/repos/cloudooo.git
branch = master
21
git-executable = ${git:location}/bin/git
22 23 24

[cloudooo]
recipe = zc.recipe.egg
25
python = python2.7
26
extra-paths = ${cloudooo-repository:location}
27 28
eggs =
  ${lxml-python:egg}
29
  PasteScript
30 31 32 33 34 35 36 37 38 39
  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 = 
40
  paster=cloudooo_paster
41 42
  runCloudoooUnitTest
  runCloudoooTestSuite
43
ugly-depend-on = ${cloudooo-repository:recipe} ${cloudooo-repository:repository} ${cloudooo-check-recipe:command}