From c67f5fb569455df5e7a840cad8dfa2c932976dfe Mon Sep 17 00:00:00 2001 From: Nitin Goyal Date: Wed, 12 Feb 2020 09:30:50 +0530 Subject: [Config] Change setup.py file Add Python versions and dependencies in the setup.py file. Change-Id: I2d012852542c496a56bdd34a5a5659b4b2c0020a Signed-off-by: Nitin Goyal --- openshift-storage-libs/setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'openshift-storage-libs/setup.py') diff --git a/openshift-storage-libs/setup.py b/openshift-storage-libs/setup.py index ab6df205..09e44ef6 100644 --- a/openshift-storage-libs/setup.py +++ b/openshift-storage-libs/setup.py @@ -7,7 +7,7 @@ name = 'openshift-storage-libs' setup( name=name, version=version, - description='Red Hat Container-Native Storage Libraries', + description='Red Hat Openshift Container Storage Libraries', author='Red Hat, Inc.', author_email='cns-qe@redhat.com', packages=find_packages(), @@ -20,10 +20,13 @@ setup( 'Programming Language :: Python :: 2' 'Programming Language :: Python :: 2.6' 'Programming Language :: Python :: 2.7' + 'Programming Language :: Python :: 3' + 'Programming Language :: Python :: 3.7' 'Topic :: Software Development :: Testing' ], install_requires=['glusto', 'ddt', 'mock', 'rtyaml', 'jsondiff', 'six', - 'simplejson', 'prometheus_client>=0.4.2'], + 'simplejson', 'prometheus_client>=0.4.2', + 'pytest-custom-exit-code', 'pyvmomi'], dependency_links=[ 'http://github.com/loadtheaccumulator/glusto/tarball/master#egg=glusto' ], -- cgit