Fix the bug described in YARDSTICK-142
[yardstick.git] / setup.py
1 from setuptools import setup, find_packages
2
3
4 setup(
5     name="yardstick",
6     version="0.1.dev0",
7     packages=find_packages(),
8     include_package_data=True,
9     package_data={
10         'yardstick': [
11             'benchmark/scenarios/compute/*.bash',
12             'benchmark/scenarios/networking/*.bash',
13             'benchmark/scenarios/storage/*.bash',
14             'resources/files/*'
15         ]
16     },
17     url="https://www.opnfv.org",
18     install_requires=["backport_ipaddress",  # remove with python3
19                       "flake8",
20                       "Jinja2>=2.6",
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                       "testrepository>=0.0.18"
32                       ],
33     extras_require={
34         'plot': ["matplotlib>=1.4.2"]
35     },
36     entry_points={
37         'console_scripts': [
38             'yardstick=yardstick.main:main',
39             'yardstick-plot=yardstick.plot.plotter:main [plot]'
40         ],
41     },
42     scripts=['tools/yardstick-img-modify']
43 )