dfilppi | 9981f55 | 2017-08-07 20:10:53 +0000 | [diff] [blame] | 1 | ######### |
| 2 | # Copyright (c) 2014 GigaSpaces Technologies Ltd. All rights reserved |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # * See the License for the specific language governing permissions and |
| 14 | # * limitations under the License. |
| 15 | |
| 16 | from setuptools import setup |
| 17 | |
| 18 | |
| 19 | setup( |
| 20 | zip_safe=True, |
| 21 | name='cloudify-openstack-plugin', |
| 22 | version='2.2.0', |
| 23 | author='idanmo', |
| 24 | author_email='idan@gigaspaces.com', |
| 25 | packages=[ |
| 26 | 'openstack_plugin_common', |
| 27 | 'nova_plugin', |
| 28 | 'neutron_plugin', |
| 29 | 'cinder_plugin', |
| 30 | 'glance_plugin', |
| 31 | 'keystone_plugin' |
| 32 | ], |
| 33 | license='LICENSE', |
| 34 | description='Cloudify plugin for OpenStack infrastructure.', |
| 35 | install_requires=[ |
| 36 | 'cloudify-plugins-common>=3.3.1', |
| 37 | 'keystoneauth1>=2.16.0,<3', |
| 38 | 'python-novaclient==7.0.0', |
| 39 | 'python-keystoneclient==3.5.0', |
| 40 | 'python-neutronclient==6.0.0', |
| 41 | 'python-cinderclient==1.9.0', |
| 42 | 'python-glanceclient==2.5.0', |
| 43 | 'IPy==0.81' |
| 44 | ] |
| 45 | ) |