A initial HA test case
[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/availability/ha_tools/*.bash',
12             'benchmark/scenarios/compute/*.bash',
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                       "coverage>=3.6",
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                       "testtools>=1.4.0"
35                       ],
36     extras_require={
37         'plot': ["matplotlib>=1.4.2"]
38     },
39     entry_points={
40         'console_scripts': [
41             'yardstick=yardstick.main:main',
42             'yardstick-plot=yardstick.plot.plotter:main [plot]'
43         ],
44     },
45     scripts=['tools/yardstick-img-modify']
46 )