-
Notifications
You must be signed in to change notification settings - Fork 1
/
buildout.cfg
56 lines (50 loc) · 978 Bytes
/
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
[buildout]
extensions = mr.developer
auto-checkout = *
sources-dir = parts
parts =
python
django
sphinx
eggs =
fabric
django
django-celery
django-crispy-forms
django-extensions
django-debug-toolbar
django_nose
django_polymorphic
djangorestframework
flower
mock
mysql-python
python-memcached
requests
south
suds
unipath
extra-paths =
${buildout:directory}/etc
${buildout:directory}/src
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
extra-paths = ${buildout:extra-paths}
[django]
recipe = djangorecipe
eggs = ${buildout:eggs}
project = etc
settings = settings
wsgi = True
fcgi = False
extra-paths = ${buildout:extra-paths}
[sphinx]
recipe = collective.recipe.sphinxbuilder
extra-paths = ${buildout:extra-paths}
source = ${buildout:directory}/docs
build = ${buildout:directory}/docs/_build
interpreter = ${buildout:directory}/bin/python
outputs =
html