move to 5 for master branch
[testsuite/python-testing-utils.git] / robotframework-onap / setup.py
1 # Copyright 2019 AT&T Intellectual Property. All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 from setuptools import setup
17
18 setup(
19     name='robotframework-onap',            # This is the name of your PyPI-package.
20     keywords=["utils", "robotframework", "testing", "onap"],
21     version='0.5',                          # Update the version number for new releases
22     license="Apache 2.0",
23     description='Scripts written to be used during robot framework testing',    # Info about script
24     long_description="python-package that provides convenience methods to make certain tasks in robot framework easier."
25                      "since this uses robot framework internal libraries or may in the future, it is not meant as a"
26                      "general purpose library",
27     url="https://github.com/onap/testsuite-python-testing-utils",
28     platforms=['all'],
29     install_requires=[
30         'dnspython',
31         'paramiko',
32         'pyyaml',
33         'robotframework',
34         'deepdiff',
35         'Jinja2',
36         # 'urllib3', # requests gets upset if this is specified since they only work with a very
37         # narrow range of urlib3. if for some reason we remove requests, readd this back in
38         'six',
39         'requests',
40         'future'
41     ],  # what we need
42     packages=['eteutils', 'loadtest', 'vcpeutils'],       # The name of your scripts package
43     package_dir={
44         'eteutils': 'eteutils',
45         'loadtest': 'loadtest',
46         'vcpeutils': 'vcpeutils'
47     },  # The location of your scipts package
48     classifiers=[
49         'Development Status :: 4 - Beta',
50         'Intended Audience :: Developers',
51         'Programming Language :: Python :: 2.7',
52         'Programming Language :: Python :: 3.7',
53         'Environment :: Plugins',
54         'Framework :: Robot Framework',
55         'Framework :: Robot Framework :: Library',
56         'License :: OSI Approved :: Apache Software License'
57     ],
58     test_suite="tests.runner"
59 )