forked from crate/crash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
50 lines (44 loc) · 1013 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
[buildout]
develop = .
extends = versions.cfg
versions = versions
show-picked-versions = true
parts = test
scripts
crate
omelette
tox
sphinx
[scripts]
recipe = zc.recipe.egg:script
interpreter = py
eggs = crash
wheel
codecov
coverage
twine
[crate]
recipe = hexagonit.recipe.download
url = https://cdn.crate.io/downloads/releases/crate-${versions:crate_server}.tar.gz
strip-top-level-dir = true
[test]
relative-paths=true
recipe = zc.recipe.testrunner
working-directory = ${buildout:directory}/docs
defaults = ['--auto-color']
eggs = crash [test]
[omelette]
# used for bundling crash. see DEVELOP.rst
recipe = collective.recipe.omelette
eggs = crash
[tox]
recipe = gp.recipe.tox
[sphinx]
recipe = zc.recipe.egg:script
eggs = sphinx
crate-docs-theme
relative-paths=true
scripts = sphinx-build=sphinx
initialization =
sys.argv.extend(['-N', '-q', '-b', 'html',
'-E', 'docs', '${buildout:directory}/out/html'])