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