Yardstick Hunter 8.0.0 release notes
[yardstick.git] / setup.py
1 ##############################################################################
2 # Copyright (c) 2017 Ericsson AB and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 from __future__ import absolute_import
10 from setuptools import setup, find_packages
11
12
13 setup(
14     name="yardstick",
15     version="0.1.dev0",
16     packages=find_packages(),
17     include_package_data=True,
18     package_data={
19         'yardstick': [
20             'benchmark/scenarios/availability/*.yaml',
21             'benchmark/scenarios/availability/attacker/*.yaml',
22             'benchmark/scenarios/availability/ha_tools/*.bash',
23             'benchmark/scenarios/availability/ha_tools/*/*.bash',
24             'benchmark/scenarios/availability/attacker/scripts/*.bash',
25             'benchmark/scenarios/availability/monitor/*.yaml',
26             'benchmark/scenarios/availability/monitor/script_tools/*.bash',
27             'benchmark/scenarios/compute/*.bash',
28             'benchmark/scenarios/networking/*.bash',
29             'benchmark/scenarios/networking/*.txt',
30             'benchmark/scenarios/parser/*.sh',
31             'benchmark/scenarios/storage/*.bash',
32             'network_services/nfvi/collectd.conf',
33             'network_services/nfvi/collectd.sh',
34             'resources/files/*',
35             'resources/scripts/install/*.bash',
36             'resources/scripts/remove/*.bash'
37         ],
38         'etc': [
39             'yardstick/nodes/*/*.yaml',
40             'yardstick/*.sample'
41         ],
42         'tests': [
43             'opnfv/*/*.yaml',
44             'ci/*.sh'
45         ]
46     },
47     url="https://www.opnfv.org",
48     extras_require={
49         'plot': ["matplotlib>=1.4.2"]
50     },
51     entry_points={
52         'console_scripts': [
53             'yardstick=yardstick.main:main',
54             'yardstick-plot=yardstick.plot.plotter:main [plot]'
55         ],
56         'yardstick.scenario': []
57     },
58     scripts=[
59         'tools/yardstick-img-modify',
60         'tools/yardstick-img-lxd-modify',
61         'tools/yardstick-img-dpdk-modify'
62     ]
63 )