Merge "Add unit test for fio"
[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/compute/*.bash',
14             'benchmark/scenarios/networking/*.bash',
15             'benchmark/scenarios/storage/*.bash',
16             'resources/files/*'
17         ]
18     },
19     url="https://www.opnfv.org",
20     install_requires=["backport_ipaddress",  # remove with python3
21                       "flake8",
22                       "PyYAML>=3.10",
23                       "pbr<2.0,>=1.3",
24                       "python-glanceclient>=0.12.0",
25                       "python-heatclient>=0.2.12",
26                       "python-keystoneclient>=0.11.1",
27                       "python-neutronclient>=2.3.9",
28                       "python-novaclient>=2.24.1",
29                       "mock>=1.0.1",  # remove with python3
30                       "paramiko",
31                       "six"
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 )