From 26a2204f3b63384f1136829686e632ed546ccb4c Mon Sep 17 00:00:00 2001 From: btharper Date: Sat, 13 Oct 2018 19:20:54 -0400 Subject: [PATCH] Add Delegator.py to test dependencies (#205) Delegator.py is used for cli tests but isn't included in dependencies. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5d27392..291b868 100644 --- a/setup.py +++ b/setup.py @@ -56,5 +56,6 @@ setup( test_suite='tests', classifiers=CLASSIFIERS, scripts=['bin/num2words'], - install_requires=["docopt>=0.6.2"] + install_requires=["docopt>=0.6.2"], + tests_require=['delegator.py'], )