public
Description: You keep personal data in all sorts of places on the internets. Jellyroll brings them together onto your own site.
Homepage:
Clone URL: git://github.com/jacobian/jellyroll.git
jacobian (author)
Fri Aug 28 15:28:12 -0700 2009
commit  337be479c7b460fce78fad256b20d6badbeceac5
tree    1c151de4b1bf3bbb6f4f60a00420396fb0c66b21
parent  5cd17a77c98e84a232b032484ee702ba6c0f676a parent  912aa84035dec8c86163792df3ec41aae81712d3
jellyroll / buildout.cfg
100644 31 lines (28 sloc) 0.63 kb
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 = python django-1.1 coverage
develop = .
eggs = jellyroll
       coverage
       mock
       GitPython
       feedparser
       httplib2
 
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
extra-paths = ${coverage:location}
 
[coverage]
recipe = iw.recipe.subversion
urls =
    http://opensource.55minutes.com/svn/python/trunk/django/apps/test_coverage/@41 test_coverage
 
[django-1.1]
recipe = djangorecipe
version = 1.1
projectegg = jellyroll
project = jellyroll
settings = testsettings
test = jellyroll
testrunner = test-1.1
eggs = ${buildout:eggs}
extra-paths = ${python:extra-paths}