forked from redkyn/grader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildout.cfg
More file actions
46 lines (40 loc) · 716 Bytes
/
buildout.cfg
File metadata and controls
46 lines (40 loc) · 716 Bytes
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
[buildout]
parts =
flake8
grader
pytest
python
sphinx
develop = grader
eggs-directory = var/eggs
parts-directory = var/parts
develop-eggs-directory = var/develop-eggs
show-picked-versions = false
[versions]
flake8 = 2.5.0
pytest = 2.8.7
Sphinx = 1.3.5
[flake8]
recipe = zc.recipe.egg
eggs = flake8
${buildout:develop}
scripts = flake8
[grader]
recipe = zc.recipe.egg:script
eggs = grader
[pytest]
recipe = zc.recipe.egg
eggs = pytest
pytest-cov
${buildout:develop}
scripts = py.test
[python]
recipe = zc.recipe.egg
eggs = ipython
readline
${buildout:develop}
scripts = ipython=python
[sphinx]
recipe = zc.recipe.egg
eggs = Sphinx
${buildout:develop}