~narindergupta/+junk/opnfvfuel

« back to all changes in this revision

Viewing changes to buildout.cfg

  • Committer: Blake Rouse
  • Date: 2015-03-10 20:57:10 UTC
  • Revision ID: blake.rouse@canonical.com-20150310205710-vznzkeks0ophvpkt
Finish the sipport of using buildout.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[buildout]
 
2
parts =
 
3
  mib
 
4
extensions = buildout-versions
 
5
buildout_versions_file = versions.cfg
 
6
versions = versions
 
7
extends = versions.cfg
 
8
offline = false
 
9
newest = false
 
10
include-site-packages = true
 
11
prefer-final = true
 
12
allow-picked-versions = false
 
13
 
 
14
[common]
 
15
extra-paths =
 
16
  ${buildout:directory}/src
 
17
test-eggs =
 
18
  coverage
 
19
  fixtures
 
20
  mock
 
21
  nose
 
22
  python-subunit
 
23
  sst
 
24
  testresources
 
25
  testscenarios
 
26
  testtools
 
27
initialization =
 
28
  from os import environ
 
29
  environ.setdefault("MIB_CONTRIB_DIR", "${buildout:directory}/contrib")
 
30
 
 
31
[mib]
 
32
recipe = zc.recipe.egg
 
33
eggs =
 
34
  ${common:test-eggs}
 
35
entry-points =
 
36
  maas-image-builder=mib.core:execute
 
37
initialization =
 
38
  ${common:initialization}
 
39
scripts =
 
40
  maas-image-builder
 
41
extra-paths =
 
42
  ${common:extra-paths}
 
43
 
 
44
[flake8]
 
45
recipe = zc.recipe.egg
 
46
eggs =
 
47
  flake8
 
48
entry-points =
 
49
  flake8=flake8.run:main