blob: 30169b2057b4ae5779d6b26948b4639ed83b4616 (
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
|
[buildout]
parts = django tagging django-robots south registration
eggs =
PIL
[django]
recipe = djangorecipe
version = 1.2.4
project = pytask
settings = settings
eggs =
${buildout:eggs}
pythonpath =
${tagging:location}
${django-robots:location}
${south:location}
${registration:location}
[tagging]
recipe = infrae.subversion
urls = http://django-tagging.googlecode.com/svn/trunk/ .
[django-robots]
recipe = mercurialrecipe
repository = https://bitbucket.org/jezdez/django-robots/
[south]
recipe = mercurialrecipe
repository = https://bitbucket.org/andrewgodwin/south/
[registration]
recipe = mercurialrecipe
repository = https://bitbucket.org/ubernostrum/django-registration/
|