-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuildout.cfg
85 lines (71 loc) · 1.59 KB
/
buildout.cfg
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Buildout configuration to make a test app for django-layout
# Author: Bruce Kroeze
# easy_install -f http://dist.plone.org/thirdparty/ -U PIL==1.1.7
[buildout]
parts =
django
django-command-extensions
testrunner
pep8 pep8-link
django-nose
signedauth
eggs =
ipython
python-memcached
mysql-python
django-keyedcache
nose
docutils
psycopg2==2.4.1
python-dateutil==1.5
PIL==1.1.7
south
django-registration
django-profiles
django-piston
simplejson
httplib2
extra-paths =
${django-nose:location}
${django-command-extensions:location}
${signedauth:location}
apps
find-links =
http://dist.plone.org/thirdparty
unzip = true
[versions]
Django = 1.2.7
[django]
recipe = djangorecipe
project = playaevents
settings = production
test = djangotest
testrunner = djangotests
fcgi = true
wsgi = true
eggs =
${buildout:eggs}
pythonpath =
${buildout:extra-paths}
[django-command-extensions]
recipe = zerokspot.recipe.git
repository = git://github.com/django-extensions/django-extensions.git
[django-nose]
recipe = zerokspot.recipe.git
repository = git://github.com/jbalogh/django-nose.git
branch = django-1.2
[pep8]
recipe = zerokspot.recipe.git
repository = git://github.com/jcrocholl/pep8.git
[pep8-link]
recipe = cns.recipe.symlink
symlink = ${pep8:location}/pep8.py = ${buildout:directory}/bin/pep8.py
[signedauth]
recipe = zerokspot.recipe.git
repository = git://github.com/bkroeze/django-signedauth.git
[testrunner]
recipe = zc.recipe.testrunner
eggs =
${buildout:eggs}
extra-paths =
${buildout:extra-paths}