Merge "argsAlreadyParsedError: arguments already parsed: cannot register CLI option"
[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             'ci/*.sh'
33         ]
34     },
35     url="https://www.opnfv.org",
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=[
46         'tools/yardstick-img-modify',
47         'tools/yardstick-img-lxd-modify',
48         'tools/yardstick-img-dpdk-modify'
49     ]
50 )