Add test case description and task file for TC048
[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         ]
24     },
25     url="https://www.opnfv.org",
26     install_requires=["backport_ipaddress",  # remove with python3
27                       "coverage>=3.6",
28                       "flake8",
29                       "Jinja2>=2.6",
30                       "lxml",
31                       "PyYAML>=3.10",
32                       "pbr<2.0,>=1.3",
33                       "python-openstackclient>=2.1.0",
34                       "python-glanceclient>=0.12.0",
35                       "python-heatclient>=0.2.12",
36                       "python-keystoneclient>=0.11.1",
37                       "python-neutronclient>=2.3.9",
38                       "python-novaclient>=2.24.1",
39                       "mock>=1.0.1",  # remove with python3
40                       "paramiko",
41                       "netifaces",
42                       "scp",
43                       "six",
44                       "testrepository>=0.0.18",
45                       "testtools>=1.4.0",
46                       "nose"
47                       ],
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     },
57     scripts=['tools/yardstick-img-modify']
58 )