blob: 4f28529e4a67ad2b34bcda85233c69338ba56047 (
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
|
[buildout]
parts = django tagging django-robots south
eggs =
Werkzeug
PIL
docutils
reportlab
[django]
recipe = djangorecipe
version = 1.2.1
settings = production
eggs =
${buildout:eggs}
${reportlab:eggs}
pythonpath =
${tagging:location}
${django-robots:location}
${south:location}
[tagging]
recipe = infrae.subversion
urls = http://django-tagging.googlecode.com/svn/trunk/ .
[django-robots]
recipe = mercurialrecipe
repository = http://bitbucket.org/jezdez/django-robots/
[south]
recipe = mercurialrecipe
repository = http://bitbucket.org/andrewgodwin/south/
|