myles / django-contacts

A Django address book application.

This URL has Read+Write access

Enrico (author)
Thu Oct 22 05:56:02 -0700 2009
myles (committer)
Thu Oct 22 06:02:04 -0700 2009
commit  85916de4d6fa83ccc155fb9ca226c84dcb23dd25
tree    2cd2f4e11debac50810322fc9576ce36454f9560
parent  d2f1546b59140c7bcf73b23b75e18e6e4af34f5a
django-contacts / buildout.cfg
100644 27 lines (24 sloc) 0.5 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
[buildout]
parts = python django django-trunk
develop = .
eggs = django-contacts
 
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
 
[django]
recipe = djangorecipe
version = 1.0.2
project = contacts
projectegg = contacts
settings = testsettings
test = contacts
eggs = ${buildout:eggs}
 
[django-trunk]
recipe = djangorecipe
version = trunk
project = ${django:project}
projectegg = ${django:project}
settings = ${django:settings}
test = ${django:test}
eggs = ${buildout:eggs}