OLD | NEW |
1 # Juju GUI server requirements. | 1 # Juju GUI server requirements. |
2 | 2 |
3 # This file is part of the Juju GUI, which lets users view and manage Juju | 3 # This file is part of the Juju GUI, which lets users view and manage Juju |
4 # environments within a graphical interface (https://launchpad.net/juju-gui). | 4 # environments within a graphical interface (https://launchpad.net/juju-gui). |
5 # Copyright (C) 2012-2013 Canonical Ltd. | 5 # Copyright (C) 2012-2013 Canonical Ltd. |
6 # | 6 # |
7 # This program is free software: you can redistribute it and/or modify it under | 7 # This program is free software: you can redistribute it and/or modify it under |
8 # the terms of the GNU Affero General Public License version 3, as published by | 8 # the terms of the GNU Affero General Public License version 3, as published by |
9 # the Free Software Foundation. | 9 # the Free Software Foundation. |
10 # | 10 # |
11 # This program is distributed in the hope that it will be useful, but WITHOUT | 11 # This program is distributed in the hope that it will be useful, but WITHOUT |
12 # ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, | 12 # ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, |
13 # SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 # SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 # Affero General Public License for more details. | 14 # Affero General Public License for more details. |
15 # | 15 # |
16 # You should have received a copy of the GNU Affero General Public License | 16 # You should have received a copy of the GNU Affero General Public License |
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 17 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
18 | 18 |
19 # Note: the order of the following dependencies is important! The last ones | 19 # Note: the order of the following dependencies is important! The last ones |
20 # depends on the previous. | 20 # depends on the previous. |
21 # The libcurl3, python-bzrlib, python-pycurl and python-yaml dependencies are | 21 # The libcurl3, python-bzrlib, python-pycurl and python-yaml dependencies are |
22 # installed using apt in the charm hooks. | 22 # installed using apt in the charm hooks. |
23 # The curl packages are required by Tornado's curl_httpclient. YAML support is | 23 # The curl packages are required by Tornado's curl_httpclient. YAML support is |
24 # required to parse bundles. The Bazaar library is used by the deployer. | 24 # required to parse bundles. The Bazaar library is used by the deployer. |
25 | 25 |
26 futures==2.1.4 | 26 futures==2.1.4 |
27 tornado==3.1.1 | 27 tornado==3.1.1 |
28 websocket-client==0.12.0 | 28 six==1.8.0 |
29 jujuclient==0.17.5 | 29 backports.ssl_match_hostname==3.4.0.2 |
30 juju-deployer==0.3.9 | 30 websocket-client==0.18.0 |
| 31 jujuclient==0.18.4 |
| 32 juju-deployer==0.4.0 |
31 charmworldlib==0.3.0 | 33 charmworldlib==0.3.0 |
OLD | NEW |