forked from xuru/pyvisdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuildout.cfg
65 lines (57 loc) · 1.01 KB
/
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
60
61
62
63
64
[buildout]
parts = test docs coverage pyflakes pep8 vim
unzip = true
develop = .
eggs =
pyvisdk
nose
coverage
doc2dash
[vim]
recipe = zc.recipe.egg
eggs = pyvisdk
dependent-scripts = true
[test]
recipe = pbp.recipe.noserunner
eggs = ${buildout:eggs}
working-directory = ./tests
defaults =
--logging-filter=-suds,-nose.suite
[ipython]
recipe = zc.recipe.egg
eggs =
ipython
pyvisdk
scripts = ipython
[coverage]
recipe = pbp.recipe.noserunner
eggs =
${buildout:eggs}
defaults =
--verbosity=3
--with-coverage
--cover-erase
--cover-package=pyvisdk
--cover-html
--cover-html-dir=${buildout:directory}/docs/coverage
[docs]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs/source
build = ${buildout:directory}/docs/build
outputs =
html
eggs = ${buildout:eggs}
[pyflakes]
recipe = zc.recipe.egg
scripts =
pyflakes
eggs =
pyflakes
entry-points = pyflakes=pkg_resources:run_script
arguments = 'pyflakes', 'pyflakes'
[pep8]
recipe = zc.recipe.egg
eggs =
pep8
scripts =
pep8