~mgedmin/ubuntu.lt/socialauth

8 by Mantas Zimnickas
Added experimental social app and updated from django-starter
1
[buildout]
2
extends = buildout.cfg
3
always-checkout = force
4
5
parts +=
6
    ctags
7
    flake8
8
    sphinx
28.1.1 by Marius Gedminas
Intoduce 'make coverage' for more accurate coverage reporting.
9
    scripts
8 by Mantas Zimnickas
Added experimental social app and updated from django-starter
10
28 by Marius Gedminas
Disable omelette, it fails here with a strange OSError.
11
#   omelette <-- disabled, buggy piece of $#$#@%#@
12
8 by Mantas Zimnickas
Added experimental social app and updated from django-starter
13
eggs +=
14
    coverage
15
    django-coverage
16
    django-debug-toolbar
17
    django-extensions
18
    ipdb
19
    ipython
20
21
[django]
22
settings = development
23
wsgi = false
24
25
[ctags]
26
recipe = z3c.recipe.tag:tags
27
eggs = ${buildout:eggs}
28
extra-paths = ${buildout:extra-paths}
29
30
[omelette]
31
recipe = collective.recipe.omelette
32
eggs = ${buildout:eggs}
33
34
[sphinx]
35
recipe = zc.recipe.egg
36
eggs =
37
    ${buildout:eggs}
38
    Sphinx
39
extra-paths =
40
    ${buildout:extra-paths}
41
    ${buildout:directory}
42
    ${django:location}
43
scripts =
44
    sphinx-build
45
46
[flake8]
47
recipe = zc.recipe.egg
48
eggs = flake8
49
entry-points =
50
    flake8=flake8:main
28.1.1 by Marius Gedminas
Intoduce 'make coverage' for more accurate coverage reporting.
51
52
[scripts]
53
recipe = zc.recipe.egg
54
eggs = ${buildout:eggs}
55
interpreter = python