summaryrefslogtreecommitdiff
path: root/horizon/buildout.cfg
blob: 33ca3cd654df2f6162295c034d3c4338e38c07eb (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[buildout]
download-cache = /tmp/.buildout_cache/
parts =
   django
   openstackx
   quantum
   python-novaclient
   python-keystoneclient
   seleniumrc
develop = .
versions = versions


[versions]
django = 1.3
# the following are for glance-dependencies
greenlet = 0.3.1
eventlet = 0.9.12
pep8 = 0.5.0
sqlalchemy = 0.6.3
sqlalchemy-migrate = 0.6
webob = 1.0.8
glance = 2011.3
pycrypto = 2.3


[dependencies]
# dependencies that are found locally ${buildout:directory}/module
# or can be fetched from pypi
recipe = zc.recipe.egg
eggs =
    python-dateutil
    httplib2
    python-cloudfiles
    coverage
    glance
    django-nose-selenium
    CherryPy
    pycrypto
interpreter = python


# glance doesn't properly list it's dependencies, so we have to install them
[glance-dependencies]
recipe = zc.recipe.egg
eggs =
   PasteDeploy
   anyjson
   argparse
   eventlet
   greenlet
   kombu
   paste
   pep8
   routes
   sqlalchemy
   sqlalchemy-migrate
   webob
   xattr
interpreter = python


[horizon]
recipe = zc.recipe.egg
eggs = horizon
interpreter = python


[django]
# defines settings for django
# any dependencies that cannot be satisifed via the dependencies
# recipe above will need to be added to the extra-paths here.
# IE, dependencies fetch from a git repo will not auto-populate
# like the zc.recipe.egg ones will
recipe = djangorecipe
project = horizon
projectegg = horizon
settings = tests
test = horizon
eggs =
   ${dependencies:eggs}
   ${horizon:eggs}
   ${glance-dependencies:eggs}
extra-paths =
    ${buildout:directory}/parts/openstackx
    ${buildout:directory}/parts/python-novaclient
    ${buildout:directory}/parts/python-keystoneclient


## Dependencies fetch from git
# git dependencies end up as a subdirectory of ${buildout:directory}/parts/
[openstackx]
recipe = zerokspot.recipe.git
repository = git://github.com/cloudbuilders/openstackx.git
as_egg = True


[quantum]
recipe = zerokspot.recipe.git
repository = git://github.com/openstack/quantum.git
branch = stable/diablo
as_egg = True


[python-novaclient]
recipe = zerokspot.recipe.git
repository = git://github.com/rackspace/python-novaclient.git
as_egg = True


[python-keystoneclient]
recipe = zerokspot.recipe.git
repository = git://github.com/4P/python-keystoneclient.git
as_egg = True


[seleniumrc]
recipe=collective.recipe.seleniumrc