source: buildout.cfg @ 304:19f313576d44

Revision 304:19f313576d44, 1.1 KB checked in by raph, 15 months ago (diff)

use django 1.1.2 (fixes notif. test)

Line 
1[buildout]
2newest=false
3parts = 
4        django
5        python
6        django-extensions
7        django-piston
8        omelette
9unzip = true
10develop = .
11
12[python]
13recipe = zc.recipe.egg
14interpreter = python
15eggs = ${django:eggs}
16
17[django]
18recipe = djangorecipe
19version = 1.1.2
20# trunk
21project = cm
22projectegg = cm
23wsgi = true # gen wsgi
24settings = settings
25#test = cm
26pythonpath = src
27        src/cm
28        ${django-extensions:location}
29        ${django-piston:location}
30eggs = 
31        django-flash
32        django-tagging
33#       django-piston
34# api dependency
35#       django-css     
36#       chardet
37        feedparser
38        PIL
39        BeautifulSoup
40        html5lib
41        pytz
42        simplejson
43        pyyaml
44        south
45# psycopg2/mysql should be optional dependencies ... possible with buildout ???
46#       magic ???????? http://www.jsnp.net/code/magic.py ??? impossible to include this dependency
47#       utidylib ?????? http://download.berlios.de/utidylib/uTidylib-0.2.zip
48
49[django-extensions]
50recipe=zerokspot.recipe.git
51repository=git://github.com/django-extensions/django-extensions.git
52#rev=7c73978b55fcadbe2cd6f2abbefbedb5a85c2c8c
53
54[django-piston]
55recipe = mercurialrecipe
56repository = http://bitbucket.org/jespern/django-piston
57
58[omelette]
59recipe = collective.recipe.omelette
60eggs = ${django:eggs}
Note: See TracBrowser for help on using the repository browser.