Add support for single server ping test
[yardstick.git] / setup.py
1 import ez_setup
2 from setuptools import setup, find_packages
3
4 ez_setup.use_setuptools()
5
6 setup(
7     name="yardstick",
8     version="0.1.dev0",
9     packages=find_packages(),
10     include_package_data=True,
11     package_data={'yardstick': ['benchmark/scenarios/networking/*.bash']},
12     url="https://www.opnfv.org",
13     install_requires=["backport_ipaddress",  # remove with python3
14                       "flake8",
15                       "PyYAML>=3.10",
16                       "pbr!=0.7,<1.0,>=0.6",
17                       "python-glanceclient>=0.12.0",
18                       "python-heatclient>=0.2.12",
19                       "python-keystoneclient>=0.11.1",
20                       "python-neutronclient>=2.3.9",
21                       "python-novaclient>=2.24.1",
22                       "mock>=1.0.1",  # remove with python3
23                       "paramiko",
24                       "six"
25                       ],
26     entry_points={
27         'console_scripts': [
28             'yardstick=yardstick.main:main',
29         ],
30     },
31     scripts=['tools/yardstick-img-modify']
32 )