Add functional tests in verify and merge
[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                       "Jinja2>=2.6",
23                       "PyYAML>=3.10",
24                       "pbr<2.0,>=1.3",
25                       "python-glanceclient>=0.12.0",
26                       "python-heatclient>=0.2.12",
27                       "python-keystoneclient>=0.11.1",
28                       "python-neutronclient>=2.3.9",
29                       "python-novaclient>=2.24.1",
30                       "mock>=1.0.1",  # remove with python3
31                       "paramiko",
32                       "six",
33                       "testrepository>=0.0.18"
34                       ],
35     extras_require={
36         'plot': ["matplotlib>=1.4.2"]
37     },
38     entry_points={
39         'console_scripts': [
40             'yardstick=yardstick.main:main',
41             'yardstick-plot=yardstick.plot.plotter:main [plot]'
42         ],
43     },
44     scripts=['tools/yardstick-img-modify']
45 )