X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=k8s%2Fsetup.py;h=97a7408b6e31fc291482690a52e191524a705f76;hb=HEAD;hp=190d6030fe345e305d054494325bfc2539c1af6c;hpb=4fbbe8f6279c7c9b1e66c7b85f0ecbfa558d4c98;p=dcaegen2%2Fplatform%2Fplugins.git diff --git a/k8s/setup.py b/k8s/setup.py index 190d603..97a7408 100644 --- a/k8s/setup.py +++ b/k8s/setup.py @@ -1,7 +1,10 @@ # ============LICENSE_START======================================================= # org.onap.dcae # ================================================================================ -# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved. +# Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved. +# Copyright (c) 2020 Pantheon.tech. All rights reserved. +# Copyright (c) 2020-2021 Nokia. All rights reserved. +# Copyright (c) 2020 J. F. Lucas. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -15,24 +18,23 @@ # See the License for the specific language governing permissions and # limitations under the License. # ============LICENSE_END========================================================= -# -# ECOMP is a trademark and service mark of AT&T Intellectual Property. from setuptools import setup setup( name='k8splugin', description='Cloudify plugin for containerized components deployed using Kubernetes', - version="1.3.0", - author='J. F. Lucas, Michael Hwang, Tommy Carpenter', - packages=['k8splugin','k8sclient','msb','configure'], + version="3.9.0", + author='J. F. Lucas, Michael Hwang, Tommy Carpenter, Joanna Jeremicz, Sylwia Jakubek, Jan Malkiewicz, Remigiusz Janeczek, Piotr Marcinkiewicz, Tomasz Wrobel', + packages=['k8splugin','k8sclient','configure'], zip_safe=False, install_requires=[ - "python-consul>=0.6.0,<1.0.0", - "uuid==1.30", - "onap-dcae-dcaepolicy-lib>=2.1.0,<3.0.0", - "cloudify-plugins-common==3.4", - "cloudify-python-importer==0.1.0", - "kubernetes==4.0.0" + 'python-consul>=0.6.0', + 'onap-dcae-dcaepolicy-lib>=2.5.1', + 'kubernetes==12.0.1', + 'cloudify-common>=5.0.0', + 'validators>=0.14.2', + 'fqdn==1.5.0', + 'uritools>=2.2.0', ] )