part 2 :add coverage report in Jenkins for Yardstick
[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                       "coverage>=3.6",
20                       "flake8",
21                       "Jinja2>=2.6",
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                       "testrepository>=0.0.18",
33                       "testtools>=1.4.0"
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 )