Add Delegator.py to test dependencies (#205)

Delegator.py is used for cli tests but isn't included in dependencies.
This commit is contained in:
btharper
2018-10-13 19:20:54 -04:00
committed by Ernesto Rodriguez Ortiz
parent af49bb360f
commit 26a2204f3b

View File

@@ -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'],
)