Update release note for Danube.3.2
[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             'resources/files/*',
33             'resources/scripts/install/*.bash',
34             'resources/scripts/remove/*.bash'
35         ],
36         'etc': [
37             'yardstick/nodes/*/*.yaml',
38             'yardstick/*.sample'
39         ],
40         'tests': [
41             'opnfv/*/*.yaml',
42             'ci/*.sh'
43         ]
44     },
45     url="https://www.opnfv.org",
46     extras_require={
47         'plot': ["matplotlib>=1.4.2"]
48     },
49     entry_points={
50         'console_scripts': [
51             'yardstick=yardstick.main:main',
52             'yardstick-plot=yardstick.plot.plotter:main [plot]'
53         ],
54     },
55     scripts=[
56         'tools/yardstick-img-modify',
57         'tools/yardstick-img-lxd-modify',
58         'tools/yardstick-img-dpdk-modify'
59     ]
60 )