From 3831216e94677642b32c554d551d995f394195e7 Mon Sep 17 00:00:00 2001 From: Dileep Ranganathan Date: Wed, 12 Sep 2018 05:40:34 -0700 Subject: Added python3 support for sms client Added python3 support for sms client Change-Id: I49dfa4de5b1c4aed07dd0ef8e85fcf1d448bfc92 Issue-ID: AAF-438 Signed-off-by: Dileep Ranganathan --- sms-client/python/onapsmsclient/setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sms-client/python/onapsmsclient/setup.py') diff --git a/sms-client/python/onapsmsclient/setup.py b/sms-client/python/onapsmsclient/setup.py index bf5675f..619b0f4 100644 --- a/sms-client/python/onapsmsclient/setup.py +++ b/sms-client/python/onapsmsclient/setup.py @@ -23,7 +23,7 @@ setup( long_description="python-package onapsmsclient client library for using" " Secret Management Service (SMS) inside ONAP. Refer " "https://wiki.onap.org/display/DW/Secret+Management+Service for more details.", - version="0.0.1", + version="0.0.2", url="https://gerrit.onap.org/r/gitweb?p=aaf%2Fsms.git;a=summary", license="Apache 2", author="Kiran Kamineni", @@ -32,9 +32,11 @@ setup( platforms=["all"], install_requires=[ 'requests>=2.7.0', + 'urllib3>=1.22' ], classifiers=[ "Intended Audience :: Developers", - "Programming Language :: Python :: 2.7" + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.6" ] ) -- cgit