Merge "Update pbr requirement version in setup.py"
[yardstick.git] / setup.py
1 import ez_setup
2 from setuptools import setup, find_packages
3
4 ez_setup.use_setuptools()
5
6 setup(
7     name="yardstick",
8     version="0.1.dev0",
9     packages=find_packages(),
10     include_package_data=True,
11     package_data={
12         'yardstick': [
13             'benchmark/scenarios/networking/*.bash',
14             'benchmark/scenarios/storage/*.bash',
15             'resources/files/*'
16          ]
17     },
18     url="https://www.opnfv.org",
19     install_requires=["backport_ipaddress",  # remove with python3
20                       "flake8",
21                       "PyYAML>=3.10",
22                       "pbr<2.0,>=1.3",
23                       "python-glanceclient>=0.12.0",
24                       "python-heatclient>=0.2.12",
25                       "python-keystoneclient>=0.11.1",
26                       "python-neutronclient>=2.3.9",
27                       "python-novaclient>=2.24.1",
28                       "mock>=1.0.1",  # remove with python3
29                       "paramiko",
30                       "six"
31                       ],
32     entry_points={
33         'console_scripts': [
34             'yardstick=yardstick.main:main',
35         ],
36     },
37     scripts=['tools/yardstick-img-modify']
38 )