running Parser Yang-to-Tosca module as a tool
[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/attacker/*.yaml',
12             'benchmark/scenarios/availability/attacker/scripts/*.bash',
13             'benchmark/scenarios/compute/*.bash',
14             'benchmark/scenarios/networking/*.bash',
15             'benchmark/scenarios/networking/*.txt',
16             'benchmark/scenarios/parser/*.sh',
17             'benchmark/scenarios/storage/*.bash',
18             'resources/files/*'
19         ]
20     },
21     url="https://www.opnfv.org",
22     install_requires=["backport_ipaddress",  # remove with python3
23                       "coverage>=3.6",
24                       "flake8",
25                       "Jinja2>=2.6",
26                       "lxml",
27                       "PyYAML>=3.10",
28                       "pbr<2.0,>=1.3",
29                       "python-glanceclient>=0.12.0",
30                       "python-heatclient>=0.2.12",
31                       "python-keystoneclient>=0.11.1",
32                       "python-neutronclient>=2.3.9",
33                       "python-novaclient>=2.24.1",
34                       "mock>=1.0.1",  # remove with python3
35                       "paramiko",
36                       "netifaces",
37                       "six",
38                       "testrepository>=0.0.18",
39                       "testtools>=1.4.0"
40                       ],
41     extras_require={
42         'plot': ["matplotlib>=1.4.2"]
43     },
44     entry_points={
45         'console_scripts': [
46             'yardstick=yardstick.main:main',
47             'yardstick-plot=yardstick.plot.plotter:main [plot]'
48         ],
49     },
50     scripts=['tools/yardstick-img-modify']
51 )