X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=k8s%2Fsetup.py;h=97a7408b6e31fc291482690a52e191524a705f76;hb=HEAD;hp=2d17dc497234cc0c32a90682ab8ce3881c5aa5c6;hpb=af26b8bb3e0145a093f84be270755cc2d475317e;p=dcaegen2%2Fplatform%2Fplugins.git diff --git a/k8s/setup.py b/k8s/setup.py index 2d17dc4..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,25 +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.0.1", - 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-dockering>=1.0.0,<2.0.0", - "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', ] )