buildout.cfg
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 20 Jan 2011 17:46:49 +0530
changeset 501 b84d6a1d4603
parent 465 14a7648a8699
child 516 a552aeb7cb4e
permissions -rw-r--r--
Change all the queries to Textbook model to Tasks. Since Textbook model is deprecated now, implemented the changes in the views to query respected queries and make corresponding changes in the views.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
307
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
[buildout]
465
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
     2
parts = 
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
     3
    django
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
     4
    tagging
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
     5
    django-robots
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
     6
    south
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
     7
    registration
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
     8
    django-command-extensions
307
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
eggs = 
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    10
    PIL
390
a745a95d12f2 Add psycopg2 package for postgresql support.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 307
diff changeset
    11
    psycopg2
465
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
    12
    Werkzeug
307
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    13
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    14
[django]
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    15
recipe = djangorecipe
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    16
version = 1.2.4
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    17
project = pytask
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    18
settings = settings
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    19
eggs =
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    20
    ${buildout:eggs}
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    21
pythonpath = 
465
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
    22
    ${django-command-extensions:location}
307
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    23
    ${tagging:location}
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    24
    ${django-robots:location}
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    25
    ${south:location}
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    26
    ${registration:location}
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    27
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    28
[tagging]
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    29
recipe = infrae.subversion
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    30
urls = http://django-tagging.googlecode.com/svn/trunk/ .
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    31
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    32
[django-robots]
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    33
recipe = mercurialrecipe
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    34
repository = https://bitbucket.org/jezdez/django-robots/
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    35
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    36
[south]
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    37
recipe = mercurialrecipe
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    38
repository = https://bitbucket.org/andrewgodwin/south/
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    39
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    40
[registration]
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    41
recipe = mercurialrecipe
c6bca38c1cbf Added buildout stuff and made changes accordingly
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    42
repository = https://bitbucket.org/ubernostrum/django-registration/
465
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
    43
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
    44
[django-command-extensions]
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
    45
recipe = zerokspot.recipe.git
14a7648a8699 Add support to werkzeug and the most sought after django command extensions app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 390
diff changeset
    46
repository = http://github.com/django-extensions/django-extensions.git