buildout.cfg
changeset 96 178b89a3ca4f
parent 93 e86755df35da
child 103 034dc9cd752e
equal deleted inserted replaced
95:f94e0cd9a862 96:178b89a3ca4f
     1 [buildout]
     1 [buildout]
     2 extensions = jarn.setuptoolsfixer
     2 parts = django tagging
     3 
     3 eggs = 
     4 find-links =
       
     5     http://effbot.org/downloads
       
     6     http://dist.repoze.org/
       
     7 
       
     8 parts =
       
     9     django
       
    10     basic-apps
       
    11     tagging
       
    12     django-command-extensions
       
    13     south
       
    14     registration
       
    15    reportlab
       
    16 
       
    17 eggs =
       
    18     PIL
       
    19     HTML5lib
       
    20     pisa
       
    21     Werkzeug
     4     Werkzeug
    22     elementtree
       
    23     docutils
       
    24     markdown
       
    25     textile
       
    26     beautifulsoup
       
    27     MySQL-python
     5     MySQL-python
    28 
       
    29 [versions]
       
    30 reportlab=2.3
       
    31 
       
    32 [reportlab]
       
    33 recipe=zc.recipe.egg
       
    34 eggs=
       
    35     reportlab
       
    36 find-links=
       
    37     http://distfiles.minitage.org/public/externals/minitage/
       
    38 
     6 
    39 [django]
     7 [django]
    40 recipe = djangorecipe
     8 recipe = djangorecipe
    41 version = 1.1
     9 version = 1.2.1
    42 settings = production
    10 settings = development
    43 eggs =
    11 eggs =
    44     ${buildout:eggs}
    12     ${buildout:eggs}
    45     ${reportlab:eggs}
       
    46 pythonpath =
    13 pythonpath =
    47     ${basic-apps:location}
       
    48     ${tagging:location}
    14     ${tagging:location}
    49     ${django-command-extensions:location}
       
    50     ${south:location}
       
    51     ${registration:location}
       
    52 
       
    53 [basic-apps]
       
    54 recipe = zerokspot.recipe.git
       
    55 repository = http://github.com/nathanborror/django-basic-apps.git
       
    56 
    15 
    57 [tagging]
    16 [tagging]
    58 recipe = infrae.subversion
    17 recipe = infrae.subversion
    59 urls =
    18 urls = http://django-tagging.googlecode.com/svn/trunk/ .
    60     http://django-tagging.googlecode.com/svn/trunk/ .
       
    61 
       
    62 [django-command-extensions]
       
    63 recipe = zerokspot.recipe.git
       
    64 repository = http://github.com/django-extensions/django-extensions.git
       
    65 
       
    66 [south]
       
    67 recipe = infrae.subversion
       
    68 urls =
       
    69     http://svn.aeracode.org/svn/south/tags/0.5/ .
       
    70 
       
    71 [registration]
       
    72 recipe = mercurialrecipe
       
    73 repository = http://bitbucket.org/ubernostrum/django-registration/
       
    74