add README and scripts for build and 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.1dev",
9     packages=find_packages(),
10     scripts=['bin/yardstick'],
11     include_package_data=True,
12     url="https://www.opnfv.org",
13     install_requires=["flake8",
14                       "PyYAML>=3.10",
15                       "python-glanceclient>=0.12.0",
16                       "python-heatclient>=0.2.12",
17                       "python-keystoneclient>=0.11.1",
18                       "python-neutronclient>=2.3.9",
19                       "python-novaclient>=2.24.1",
20                       "mock>=1.0.1",
21                       "paramiko",
22                       "six"
23                       ],
24 )