Support run cyclictest on BareMetal
[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/attacker/*.yaml',
12             'benchmark/scenarios/availability/attacker/scripts/*.bash',
13             'benchmark/scenarios/availability/monitor/*.yaml',
14             'benchmark/scenarios/availability/monitor/script_tools/*.bash',
15             'benchmark/scenarios/compute/*.bash',
16             'benchmark/scenarios/networking/*.bash',
17             'benchmark/scenarios/networking/*.txt',
18             'benchmark/scenarios/parser/*.sh',
19             'benchmark/scenarios/storage/*.bash',
20             'resources/files/*'
21         ]
22     },
23     url="https://www.opnfv.org",
24     install_requires=["backport_ipaddress",  # remove with python3
25                       "coverage>=3.6",
26                       "flake8",
27                       "Jinja2>=2.6",
28                       "lxml",
29                       "PyYAML>=3.10",
30                       "pbr<2.0,>=1.3",
31                       "python-glanceclient>=0.12.0",
32                       "python-heatclient>=0.2.12",
33                       "python-keystoneclient>=0.11.1",
34                       "python-neutronclient>=2.3.9",
35                       "python-novaclient>=2.24.1",
36                       "mock>=1.0.1",  # remove with python3
37                       "paramiko",
38                       "netifaces",
39                       "scp",
40                       "six",
41                       "testrepository>=0.0.18",
42                       "testtools>=1.4.0"
43                       ],
44     extras_require={
45         'plot': ["matplotlib>=1.4.2"]
46     },
47     entry_points={
48         'console_scripts': [
49             'yardstick=yardstick.main:main',
50             'yardstick-plot=yardstick.plot.plotter:main [plot]'
51         ],
52     },
53     scripts=['tools/yardstick-img-modify']
54 )