From e3c4ff38fe7017dfed9f24f486e61916a7421c35 Mon Sep 17 00:00:00 2001 From: Scott MacVicar Date: Wed, 6 May 2015 15:19:50 -0700 Subject: [PATCH] move test stuff out to its own section --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index fa94f58..320520a 100755 --- a/setup.py +++ b/setup.py @@ -17,11 +17,13 @@ setup(name='talon', "lxml==2.3.3", "regex>=1", "html2text", - "nose>=1.2.1", "numpy", - "mock", - "coverage", "scipy", "scikit-learn==0.16.1", # pickled versions of classifier, else rebuild + ], + tests_require=[ + "mock", + "nose>=1.2.1", + "coverage" ] )