forked from ofri/Open-Knesset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
136 lines (116 loc) · 3.31 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
[buildout]
unzip = true
prefer-final = true
versions = versions
extensions = buildout.dumppickedversions
parts = python django console_scripts activity_stream tagging planet annotatetext pydev mailer avatar hitcount backlinks pyth
develop = .
eggs =
Open-Knesset
find-links =
http://bitbucket.org/jespern/django-piston/get/tip.tar.gz#egg=django-piston
http://github.com/daonb/django-extensions/tarball/master#egg=django-extensions
https://github.com/openid/python-openid/tarball/master
[tcpwatch]
recipe = zc.recipe.cmmi
url = http://hathawaymix.org/Software/TCPWatch/tcpwatch-1.3.tar.gz
[poppler]
# NOTE: poppler not in parts by default since it takes 10 minutes to build and required only
# for simple/management/parse_government_bill, and you can have them more
# easily by apt-get/yum/etc..
# poppler
recipe=zc.recipe.cmmi
url=http://poppler.freedesktop.org/poppler-0.16.3.tar.gz
[activity_stream]
recipe=zerokspot.recipe.git
repository=http://github.com/daonb/django-activity-stream.git
[tagging]
recipe=zerokspot.recipe.git
repository=http://github.com/akariv/django-tagging.git
[planet]
recipe=zerokspot.recipe.git
repository=http://github.com/daonb/django-planet.git
[avatar]
recipe=zerokspot.recipe.git
repository=http://github.com/ofri/django-avatar.git
[annotatetext]
recipe=zerokspot.recipe.git
repository=http://github.com/ofri/django-annotatetext.git
[mailer]
recipe=zerokspot.recipe.git
repository=http://github.com/jtauber/django-mailer.git
[hitcount]
recipe=zerokspot.recipe.git
repository=git://github.com/akariv/django-hitcount.git
[backlinks]
recipe=zerokspot.recipe.git
repository=git://github.com/ofri/django-backlinks.git
[pyth]
recipe=zerokspot.recipe.git
repository=git://github.com/ofri/pyth.git
[mkdir]
recipe = z3c.recipe.mkdir
paths =
# ${buildout:directory}/foo/bar
[versions]
pep8 = 0.5.0
South = 0.7.3
django-extensions = 0.5
django-pagination = 1.0.7
django-tagging = 0.3.1
feedparser = 4.1
oauth = 1.0.1
py = 1.3.1
python-openid = 2.2.4
setuptools = 0.6c11
djangorecipe >= 0.20
infrae.subversion = 1.4.5
django-debug-toolbar >= 0.8.3
django-piston >= 0.2.2
django-planet >= 0.1
simplejson = 2.1.1
zc.buildout = 1.4.3
zc.recipe.egg = 1.2.2
django-hitcount >= 0.2.0
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[django]
recipe = djangorecipe
version = 1.3
wsgi = true
project = knesset
projectegg = knesset
settings = settings
testsettings = testsettings
eggs = ${buildout:eggs}
test = knesset.mks knesset.user knesset.laws knesset.links knesset.committees knesset.agendas knesset.auxiliary knesset.simple
extra-paths =
${buildout:directory}/src/knesset
${activity_stream:location}
${tagging:location}
${hitcount:location}
${planet:location}
${avatar:location}
${annotatetext:location}
${mailer:location}
${backlinks:location}/src
[console_scripts]
recipe = zc.recipe.egg
interperter = python
eggs =
${buildout:eggs}
pep8
# this one allows us to use ${buildout:directory} in the apache conf template!
[apacheconf]
recipe = collective.recipe.template
input = ${buildout:directory}/etc/Open-Knesset.apache.conf.in
output = ${buildout:directory}/etc/Open-Knesset.apache.conf
# Generate a pydev project file
[pydev]
recipe = pb.recipes.pydev
eggs = ${buildout:eggs}
extra-paths =
${django:extra-paths}
${buildout:directory}/parts/django