From 2b14616c6a9577b4c9b1da7803cf5354654741a5 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Mon, 21 Oct 2013 09:21:43 +0200 Subject: [PATCH] Move nose from setup_requires to test_requires nose is only suitable for test discovery and as such is not needed during setup.py build or install. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2fb6105..6b51c2b 100644 --- a/setup.py +++ b/setup.py @@ -26,10 +26,9 @@ setup( packages=['jenkinsapi', 'jenkinsapi.utils', 'jenkinsapi.command_line', 'jenkinsapi_tests'], zip_safe=True, include_package_data=False, - setup_requires=['nose'], install_requires=['requests>=1.2.3', 'pytz>=2013b'], test_suite='jenkinsapi_tests', - tests_require=['mock', 'coverage'], + tests_require=['mock', 'nose', 'coverage'], entry_points=GLOBAL_ENTRY_POINTS, url=PROJECT_URL, description=SHORT_DESCRIPTION, -- 2.7.4