-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
48 lines (40 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
[buildout]
extensions = mr.developer
show-picked-versions = true
auto-checkout =
ploy
ploy_ansible
ploy_ec2
ploy_ezjail
ploy_fabric
ploy_virtualbox
parts =
sphinx
test
versions = versions
[sphinx]
recipe = zc.recipe.egg
eggs =
Sphinx
sphinx_rtd_theme
[test]
recipe = zc.recipe.egg
eggs =
ansible
coverage
lazy
mock
${buildout:auto-checkout}
pytest
pytest-cov
pytest-pep8
pytest-flakes
[versions]
ansible = <2
[sources]
ploy = git https://github.com/ployground/ploy.git path=${buildout:directory}
ploy_ansible = git https://github.com/ployground/ploy_ansible.git path=${buildout:directory}
ploy_ec2 = git https://github.com/ployground/ploy_ec2.git path=${buildout:directory}
ploy_ezjail = git https://github.com/ployground/ploy_ezjail.git path=${buildout:directory}
ploy_fabric = git https://github.com/ployground/ploy_fabric.git path=${buildout:directory}
ploy_virtualbox = git https://github.com/ployground/ploy_virtualbox.git path=${buildout:directory}