From a7f93cec7999de04614d7adaf91c4348a3313e2e Mon Sep 17 00:00:00 2001 From: drebs Date: Sun, 29 Oct 2017 14:28:12 -0200 Subject: [benchmarks] add some orchestration to scalability tests --- scripts/scalability/setup.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'scripts/scalability/setup.py') diff --git a/scripts/scalability/setup.py b/scripts/scalability/setup.py index e76437db..66f0789a 100644 --- a/scripts/scalability/setup.py +++ b/scripts/scalability/setup.py @@ -1,9 +1,25 @@ """ -A Test Controller application. +A Scalability Test Controller application. """ from setuptools import setup, find_packages + +client = [ + 'funkload', +] + +server = [ + 'psutil', + 'twisted', + 'leap.soledad', +] + +extras = { + 'client': client, + 'server': server, +} + setup( name="test-controller", version="0.1", @@ -11,4 +27,5 @@ setup( packages=find_packages(), include_package_data=True, zip_safe=False, + extras_require=extras, ) -- cgit v1.2.3