Cloudify support for OOM
[oom.git] / cloudify-onap / plugins / onap-installation-plugin / setup.py
1 ########
2 # Copyright (c) 2017 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
17 from setuptools import setup
18
19 try:
20     import cloudify_kubernetes
21 except ImportError:
22     import pip
23     pip.main(['install', 'https://github.com/cloudify-incubator/cloudify-kubernetes-plugin/archive/1.2.1.zip'])
24
25 setup(
26     name='onap-installation-plugin',
27     version='1.0.0',
28     author='',
29     author_email='',
30     packages=['k8s_installer', 'k8s_installer.common'],
31     install_requires=[
32         'cloudify-plugins-common>=3.3.1',
33         'cloudify-kubernetes-plugin==1.2.1',
34         #'/tmp/k8spl/cloudify-kubernetes-plugin'
35         'pyyaml',
36         'gitpython',
37         'paramiko==1.18.3',
38         'fabric==1.13.1'
39     ]
40 )