Description: Move test dependencies from install_requires to extras_require
Author: James Westby <james.westby@canonical.com>
Bug-Debian: http://bugs.debian.org/656353
Bug-Ubuntu: https://bugs.launchpad.net/lazr.restfulclient/+bug/918307
Forwarded: https://bugs.launchpad.net/lazr.restfulclient/+bug/918307
Last-Update: 2012-01-23

--- a/setup.py
+++ b/setup.py
@@ -53,11 +53,9 @@
     license='LGPL v3',
     install_requires=[
         'httplib2',
-        'lazr.authentication',
         'oauth',
         'setuptools',
         'wadllib>=1.1.4',
-        'wsgi_intercept',
         ],
     url='https://launchpad.net/lazr.restfulclient',
     download_url= 'https://launchpad.net/lazr.restfulclient/+download',
@@ -70,8 +68,12 @@
     extras_require=dict(
         docs=['Sphinx',
               'z3c.recipe.sphinxdoc'],
-        test=['lazr.restful>=0.11.0',
-              'van.testing'],
+        test=[
+            'lazr.authentication',
+            'lazr.restful>=0.11.0',
+            'wsgi_intercept',
+            'van.testing'
+            ],
     ),
     test_suite='lazr.restfulclient.tests',
     )
