diff options
author | DR695H <dr695h@att.com> | 2019-05-01 18:52:33 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-05-01 18:53:14 -0400 |
commit | ae6fedd18ad51f175d6a2e2346f284a68b6e4967 (patch) | |
tree | 40cf730e4178000533b83ebffdf6abe04011ce06 /robotframework-onap/setup.py | |
parent | 308b44cc1e6b95df3051e5f7db94389696763cca (diff) |
support python 3
support python 3 in all files, also support python 2 however so
everything should continue to work
Change-Id: I4ace08d2bb0623c0fdc61f2fe39d2339817aa916
Issue-ID: TEST-141
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/setup.py')
-rw-r--r-- | robotframework-onap/setup.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/robotframework-onap/setup.py b/robotframework-onap/setup.py index c5460de..969fe9d 100644 --- a/robotframework-onap/setup.py +++ b/robotframework-onap/setup.py @@ -17,7 +17,7 @@ from setuptools import setup setup( name='robotframework-onap', # This is the name of your PyPI-package. - keywords=("utils", "robotframework", "testing", "onap"), + keywords=["utils", "robotframework", "testing", "onap"], version='0.4', # Update the version number for new releases license="Apache 2.0", description='Scripts written to be used during robot framework testing', # Info about script @@ -31,8 +31,11 @@ setup( 'paramiko', 'pyyaml', 'robotframework', - 'deepdiff>=2.5,<3.3', - 'Jinja2' + 'deepdiff', + 'Jinja2', + 'urllib3', + 'six', + 'requests' ], # what we need packages=['eteutils', 'loadtest', 'vcpeutils'], # The name of your scripts package package_dir={'eteutils': 'eteutils', 'loadtest': 'loadtest', 'vcpeutils':'vcpeutils'}, # The location of your scipts package @@ -40,6 +43,7 @@ setup( 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.7', 'Environment :: Plugins', 'Framework :: Robot Framework', 'Framework :: Robot Framework :: Library', |