From 3ea6a418a760d4c262b37b3660551b9953f241b2 Mon Sep 17 00:00:00 2001 From: Scisco Date: Mon, 9 Mar 2015 15:20:49 -0700 Subject: [PATCH] updated setup file --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index fc7ac3d..6ad8b17 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,10 @@ def readme(): with open("README.rst") as f: return f.read() +test_requirements = [ + 'nose==1.3.3' +] + setup( name="landsat", version='0.4.5', @@ -37,4 +41,6 @@ setup( "scikit-image==0.10.1", "homura==0.1.0" ], + test_suite='nose.collector', + test_require=test_requirements )