From 64ace697894aa5f13209ecb1cae3c4242671d143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Tue, 5 May 2015 16:49:31 +0300 Subject: [PATCH] Remove nose from setup_requires It's not really required for creating any distributions. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 328f7e1..dff749d 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,9 @@ "-DLZ4_VERSION=\"r119\"", ]) ], - setup_requires=["nose>=1.0"], + extras_require={ + 'test': ["nose>=1.0"], + }, test_suite = "nose.collector", classifiers=[ 'Development Status :: 5 - Production/Stable',