diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2009-05-26 07:36:53 -0400 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2009-05-26 07:36:53 -0400 |
commit | 7cf03ca17f51970579ead05953cfa2306877c44c (patch) | |
tree | c425e6ccc213864acc663f4df3690a2ad0459b8a /buildout.cfg | |
parent | 3a13188753cf8c9f4cb41bd920338457877d4817 (diff) | |
parent | 8e4acc290020905ce164fbe2bd9c4160f52778b5 (diff) |
Added missing buildout.cfg file.
Diffstat (limited to 'buildout.cfg')
-rw-r--r-- | buildout.cfg | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/buildout.cfg b/buildout.cfg new file mode 100644 index 0000000..14850fe --- /dev/null +++ b/buildout.cfg @@ -0,0 +1,31 @@ +[buildout] +parts = + interpreter + test + docs + tags +unzip = true + +develop = . + +[test] +recipe = zc.recipe.testrunner +eggs = beautifulsoup +defaults = '--tests-pattern ^tests --exit-with-status --suite-name additional_tests'.split() + +[docs] +recipe = z3c.recipe.sphinxdoc +eggs = beautifulsoup [docs] +index-doc = README +default.css = +layout.html = + +[interpreter] +recipe = zc.recipe.egg +interpreter = py +eggs = beautifulsoup + docutils + +[tags] +recipe = z3c.recipe.tag:tags +eggs = beautifulsoup |