-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
45 lines (41 loc) · 913 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
[buildout]
extends = ./versions.cfg
;allow-picked-version = false
update-versions-file = versions.cfg
versions = versions
develop = .
parts =
mimosa
demo
test
docs
demo_port = 5000
[mimosa]
recipe = zc.recipe.egg
eggs = mimosa
interpreter = py
[demo]
recipe = zc.recipe.egg
eggs = ${mimosa:eggs}
waitress
pyramid_debugtoolbar
scripts =
waitress-serve=run_demo
extra-paths = demo
arguments = sys.argv + "--port=${buildout:demo_port} --host=0.0.0.0 basic:application".split()
interpreter = demopy
[test]
recipe = zc.recipe.egg
eggs = mimosa[testing]
nose
coverage
scripts =
nosetests=test
initialization = sys.argv += "--with-coverage --cover-package=mimosa --cover-erase --cover-html".split()
[docs]
recipe = zc.recipe.egg
eggs = ${mimosa:eggs}
sphinx
scripts =
sphinx-build=docs
arguments = sys.argv + " -b html docs docs/_build".split()