This patch is used to add grafana config to opnfv dashboard for
[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/*.yaml',
12             'benchmark/scenarios/availability/attacker/*.yaml',
13             'benchmark/scenarios/availability/ha_tools/*.bash',
14             'benchmark/scenarios/availability/ha_tools/*/*.bash',
15             'benchmark/scenarios/availability/attacker/scripts/*.bash',
16             'benchmark/scenarios/availability/monitor/*.yaml',
17             'benchmark/scenarios/availability/monitor/script_tools/*.bash',
18             'benchmark/scenarios/compute/*.bash',
19             'benchmark/scenarios/networking/*.bash',
20             'benchmark/scenarios/networking/*.txt',
21             'benchmark/scenarios/parser/*.sh',
22             'benchmark/scenarios/storage/*.bash',
23             'resources/files/*',
24             'resources/scripts/install/*.bash',
25             'resources/scripts/remove/*.bash'
26         ],
27         'etc': [
28             'yardstick/nodes/*/*.yaml'
29         ],
30         'tests': [
31             'opnfv/*/*.yaml'
32         ]
33     },
34     url="https://www.opnfv.org",
35     install_requires=["backport_ipaddress",  # remove with python3
36                       "coverage>=3.6",
37                       "flake8",
38                       "Jinja2>=2.6",
39                       "lxml",
40                       "PyYAML>=3.10",
41                       "pbr<2.0,>=1.3",
42                       "python-openstackclient>=2.1.0",
43                       "python-glanceclient>=0.12.0",
44                       "python-heatclient>=0.2.12",
45                       "python-keystoneclient>=0.11.1",
46                       "python-neutronclient>=2.3.9",
47                       "python-novaclient>=2.24.1",
48                       "mock>=1.0.1",  # remove with python3
49                       "paramiko",
50                       "netifaces",
51                       "scp",
52                       "six",
53                       "testrepository>=0.0.18",
54                       "testtools>=1.4.0",
55                       "nose"
56                       ],
57     extras_require={
58         'plot': ["matplotlib>=1.4.2"]
59     },
60     entry_points={
61         'console_scripts': [
62             'yardstick=yardstick.main:main',
63             'yardstick-plot=yardstick.plot.plotter:main [plot]'
64         ],
65     },
66     scripts=['tools/yardstick-img-modify']
67 )