X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=setup.py;h=35037382c310646241f338b3f538cd635aef9e9f;hb=9d493a68b3df583a8875e22dbe58eaaa61511608;hp=3ef09d11134610b3ee62111faa62d10f6a38c9ff;hpb=2733defda816a84d2b9c2e361a5970b9de4923f4;p=yardstick.git diff --git a/setup.py b/setup.py index 3ef09d111..35037382c 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,9 @@ setup( include_package_data=True, package_data={ 'yardstick': [ + 'benchmark/scenarios/availability/*.yaml', 'benchmark/scenarios/availability/attacker/*.yaml', + 'benchmark/scenarios/availability/ha_tools/*.bash', 'benchmark/scenarios/availability/attacker/scripts/*.bash', 'benchmark/scenarios/availability/monitor/*.yaml', 'benchmark/scenarios/availability/monitor/script_tools/*.bash', @@ -17,7 +19,9 @@ setup( 'benchmark/scenarios/networking/*.txt', 'benchmark/scenarios/parser/*.sh', 'benchmark/scenarios/storage/*.bash', - 'resources/files/*' + 'resources/files/*', + 'resources/scripts/install/*.bash', + 'resources/scripts/remove/*.bash' ] }, url="https://www.opnfv.org", @@ -28,6 +32,7 @@ setup( "lxml", "PyYAML>=3.10", "pbr<2.0,>=1.3", + "python-openstackclient>=2.1.0", "python-glanceclient>=0.12.0", "python-heatclient>=0.2.12", "python-keystoneclient>=0.11.1", @@ -36,9 +41,11 @@ setup( "mock>=1.0.1", # remove with python3 "paramiko", "netifaces", + "scp", "six", "testrepository>=0.0.18", - "testtools>=1.4.0" + "testtools>=1.4.0", + "nose" ], extras_require={ 'plot': ["matplotlib>=1.4.2"]