diff options
| author | Jacob Kaplan-Moss | 2009-04-20 10:29:51 -0500 |
|---|---|---|
| committer | Jacob Kaplan-Moss | 2009-04-20 10:29:51 -0500 |
| commit | c55f089a40a0bd443c697dfdc198f60d6f306eea (patch) | |
| tree | 4a29b2b1748de9de920f9720b1254d9f8f52eaca | |
| parent | d566943329892d8de42a45cc27c0d7b9b38addbb (diff) | |
| download | django-shorturls-c55f089a40a0bd443c697dfdc198f60d6f306eea.tar.bz2 | |
Added an interpreter, and also added a way to test against multiple Django versions.
| -rw-r--r-- | buildout.cfg | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/buildout.cfg b/buildout.cfg index bd57fe1..bcdd699 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -1,13 +1,29 @@ [buildout] -parts = django +parts = python django-1.0 django-trunk develop = . eggs = django-shorturls -[django] +[python] +recipe = zc.recipe.egg +interpreter = python +eggs = ${buildout:eggs} + +[django-1.0] recipe = djangorecipe version = 1.0.2 projectegg = shorturls project = shorturls settings = testsettings test = shorturls -eggs = ${buildout:eggs}
\ No newline at end of file +testrunner = test-1.0 +eggs = ${buildout:eggs} + +[django-trunk] +recipe = djangorecipe +version = trunk +projectegg = shorturls +project = shorturls +settings = testsettings +test = shorturls +testrunner = test-trunk +eggs = ${buildout:eggs} |
