buildout.cfg 263 B

1234567891011121314151617
  1. [config]
  2. mypkgs = s3web
  3. [buildout]
  4. develop = .
  5. parts = py scripts
  6. # interactive python enterpreter
  7. [py]
  8. recipe = zc.recipe.egg
  9. interpreter = py
  10. eggs = ${config:mypkgs}
  11. [scripts]
  12. recipe = zc.recipe.egg:scripts
  13. eggs = s3web
  14. #arguments = ${buildout:config_file}