enhance test cases description and provide more info(in progress)
[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     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=[
45         'tools/yardstick-img-modify',
46         'tools/yardstick-img-lxd-modify',
47         'tools/yardstick-img-dpdk-modify'
48     ]
49 )