Update release checklist
[python-namecheap.git] / buildout.cfg
blob516dcd25ff0a0058ffe251ee8358dba1f15e1e01
1 [buildout]
2 index = http://mirrors.martinvillalba.com/pypi
3 parts =
4     mpython
5     nosetests
6     pylint
7     pep8
8     importchecker
9     sphinx
10 develop = .
11 eggs = namecheap
13 [mpython]
14 recipe = zc.recipe.egg
15 interpreter = mpython
16 eggs = ${buildout:eggs}
18 [nosetests]
19 recipe = pbp.recipe.noserunner
20 eggs = 
21     ${buildout:eggs}
22     coverage
23 working-directory = src
25 [pylint]
26 recipe = zc.recipe.egg
27 eggs =
28     ${buildout:eggs}
29     pylint
30 scripts = pylint
31 entry-points = pylint=pylint.lint:Run
32 arguments = sys.argv[1:]
34 [pep8]
35 recipe = zc.recipe.egg
36 eggs = pep8
38 [importchecker]
39 recipe = zc.recipe.egg
40 eggs = importchecker
42 [sphinx]
43 recipe = zc.recipe.egg
44 eggs =
45     ${buildout:eggs}
46     sphinx