From 6abb043e68af3160e0b60c38697343eb5d8a8b74 Mon Sep 17 00:00:00 2001 From: Ernesto Puerta Date: Thu, 22 Aug 2019 17:33:56 +0200 Subject: [PATCH] setup.py: move myqslclient to optional deps Signed-off-by: Ernesto Puerta --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a4a706291..957ad2bb0 100644 --- a/setup.py +++ b/setup.py @@ -51,8 +51,6 @@ setup( install_requires=['pip-tools', 'tox', 'gevent', - # For teuthology-coverage - 'mysqlclient == 1.4.2', 'PyYAML', 'argparse >= 1.2.1', 'beanstalkc >= 0.2.0', @@ -94,6 +92,9 @@ setup( 'xmltodict', 'boto3', ], + extras_require = { + 'coverage': [ 'mysqlclient == 1.4.2'], + }, # to find the code associated with entry point -- 2.47.3