-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
60 lines (50 loc) · 996 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
57
58
59
[buildout]
extends = sources.cfg
unzip = true
parts = django doc test saucetest tx eggs
default_eggs +=
pytest
eggs +=
Jinja2
coverage
django-debug-toolbar
django-extensions
django-snippetscream
docutils
factory_boy
mock
prospector
pytest
pytest-cov
pytest-django
sauceclient
selenium
transifex-client
[django]
recipe = djangorecipe
project = project
settings = development
eggs = ${buildout:eggs}
[test]
recipe = collective.recipe.template
input = scripts/test.in
output = ${buildout:bin-directory}/test
settings = compose
[saucetest]
recipe = collective.recipe.template
input = scripts/saucetest.in
output = ${buildout:bin-directory}/saucetest
settings = development
[doc]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/doc
build = ${buildout:directory}/doc/build
[tx]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
extra-paths = .
entry-points = tx=tx:run
[eggs]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
extra-paths = .