source: branches/buildoutexodus/base.cfg@ 6336

Last change on this file since 6336 was 6336, checked in by roland, 16 years ago

added unittests

File size: 897 bytes
Line 
1[buildout]
2find-links = http://dist.pareto.nl/public
3parts =
4 extras
5 django
6 testrunner
7versions = versions
8
9[versions]
10djangorecipe=0.12.1
11zc.recipe.egg=1.0.0
12zc.recipe.testrunner=1.0.0
13
14[testrunner]
15recipe = zc.recipe.testrunner
16eggs =
17 ${django:eggs}
18extra-paths =
19 ${django:pythonpath}
20 ${buildout:directory}
21 ${django:location}
22working-directory = ${buildout:directory}
23script = test
24defaults = ['--path', 'exodus',
25 '--suite-name', 'suite' ]
26initialization =
27 os.environ['DJANGO_SETTINGS_MODULE'] = 'exodus.development'
28
29[extras]
30recipe = iw.recipe.subversion
31urls =
32 http://django-command-extensions.googlecode.com/svn/trunk@135 django-command-extensions
33
34[django]
35recipe = djangorecipe
36version = 1.0
37project = exodus
38wsgi = true
39eggs =
40 Werkzeug
41pythonpath =
42 ${extras:location}/django-command-extensions/
43
44[supervisor]
45recipe = zc.recipe.egg
46eggs = supervisor
Note: See TracBrowser for help on using the repository browser.