blob: 2068dfb4dcafa9674b99df3e1997831824b31de7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
[buildout]
parts =
django
tagging
django-robots
registration
django-command-extensions
django-pygments
pygments-css
eggs =
PIL
psycopg2
Pygments
South
Werkzeug
[versions]
django = 1.3
[django]
recipe = djangorecipe
project = pytask
settings = settings
wsgi = true
wsgilog=wsgi.log
eggs =
${buildout:eggs}
pythonpath =
${django-command-extensions:location}
${tagging:location}
${django-robots:location}
${registration:location}
${django-pygments:location}
[tagging]
recipe = infrae.subversion
urls = http://django-tagging.googlecode.com/svn/trunk/ .
[django-robots]
recipe = zerokspot.recipe.git
repository = https://github.com/jezdez/django-robots.git
[registration]
recipe = mercurialrecipe
repository = https://bitbucket.org/ubernostrum/django-registration/
[django-command-extensions]
recipe = zerokspot.recipe.git
repository = http://github.com/django-extensions/django-extensions.git
[django-debug-toolbar]
recipe = zerokspot.recipe.git
repository = https://github.com/robhudson/django-debug-toolbar.git
[django-pygments]
recipe = zerokspot.recipe.git
repository = https://github.com/odeoncg/django-pygments.git
[pygments-css]
recipe = zerokspot.recipe.git
repository = https://github.com/richleland/pygments-css.git
|