diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2019-05-06 04:06:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-05-06 04:06:36 +0000 |
commit | 72584d1ed32f4936c49b80a1278d5af19c2a0dad (patch) | |
tree | 0469d57bafab5a6a872815e4f605bf0dd1af0300 /robotframework-onap/setup.py | |
parent | 1a18e91083fdd58ea528513fdf85db678deeb0c7 (diff) | |
parent | 158df8f73cb2988031cd408939681d3ade443b2f (diff) |
Merge "fix vcpeutils"
Diffstat (limited to 'robotframework-onap/setup.py')
-rw-r--r-- | robotframework-onap/setup.py | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/robotframework-onap/setup.py b/robotframework-onap/setup.py index 969fe9d..2307375 100644 --- a/robotframework-onap/setup.py +++ b/robotframework-onap/setup.py @@ -33,12 +33,18 @@ setup( 'robotframework', 'deepdiff', 'Jinja2', - 'urllib3', + # 'urllib3', # requests gets upset if this is specified since they only work with a very + # narrow range of urlib3. if for some reason we remove requests, readd this back in 'six', - 'requests' + 'requests', + 'future' ], # 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 + package_dir={ + 'eteutils': 'eteutils', + 'loadtest': 'loadtest', + 'vcpeutils': 'vcpeutils' + }, # The location of your scipts package classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', @@ -48,5 +54,6 @@ setup( 'Framework :: Robot Framework', 'Framework :: Robot Framework :: Library', 'License :: OSI Approved :: Apache Software License' - ] + ], + test_suite="tests.runner" ) |