Merge branch 'feature/issue-4' into develop
[python-namecheap.git] / buildout.cfg
blobaf359681981a0e4e1173041ceac4825d207e4fcb
1 [buildout]
2 parts =
3     pie
4     nosetests
5     pylint
6     pep8
7     importchecker
8     sphinx
9 develop = .
10 eggs = namecheap
12 [pie]
13 recipe = zc.recipe.egg
14 interpreter = pie
15 eggs = ${buildout:eggs}
17 [nosetests]
18 recipe = pbp.recipe.noserunner
19 eggs = 
20     ${buildout:eggs}
21     coverage
22 working-directory = src
24 [pylint]
25 recipe = zc.recipe.egg
26 eggs =
27     ${buildout:eggs}
28     pylint
29 scripts = pylint
30 entry-points = pylint=pylint.lint:Run
31 arguments = sys.argv[1:]
33 [pep8]
34 recipe = zc.recipe.egg
35 eggs = pep8
37 [importchecker]
38 recipe = zc.recipe.egg
39 eggs = importchecker
41 [sphinx]
42 recipe = zc.recipe.egg
43 eggs =
44     ${buildout:eggs}
45     sphinx