From: Sascha Peilicke Date: Mon, 21 Oct 2013 07:21:43 +0000 (+0200) Subject: Move nose from setup_requires to test_requires X-Git-Tag: v0.2.23~70^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b14616c6a9577b4c9b1da7803cf5354654741a5;p=tools%2Fpython-jenkinsapi.git 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. --- 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,