~ubuntu-branches/ubuntu/vivid/lazr.restfulclient/vivid-proposed

« back to all changes in this revision

Viewing changes to debian/patches/remove_test_requires

  • Committer: Package Import Robot
  • Author(s): Dimitri John Ledkov
  • Date: 2014-12-06 01:04:46 UTC
  • mfrom: (1.3.4)
  • Revision ID: package-import@ubuntu.com-20141206010446-axq9v8zp6kkfts8v
Tags: 0.13.4-0ubuntu1
Upload to vivid, because my subkey is not getting accepted by
ftp-master.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Description: Move test dependencies from install_requires to extras_require
2
 
Author: James Westby <james.westby@canonical.com>
3
 
Bug-Debian: http://bugs.debian.org/656353
4
 
Bug-Ubuntu: https://bugs.launchpad.net/lazr.restfulclient/+bug/918307
5
 
Forwarded: https://bugs.launchpad.net/lazr.restfulclient/+bug/918307
6
 
Last-Update: 2012-01-23
7
 
 
8
 
--- a/setup.py
9
 
+++ b/setup.py
10
 
@@ -53,11 +53,9 @@
11
 
     license='LGPL v3',
12
 
     install_requires=[
13
 
         'httplib2',
14
 
-        'lazr.authentication',
15
 
         'oauth',
16
 
         'setuptools',
17
 
         'wadllib>=1.1.4',
18
 
-        'wsgi_intercept',
19
 
         ],
20
 
     url='https://launchpad.net/lazr.restfulclient',
21
 
     download_url= 'https://launchpad.net/lazr.restfulclient/+download',
22
 
@@ -70,8 +68,12 @@
23
 
     extras_require=dict(
24
 
         docs=['Sphinx',
25
 
               'z3c.recipe.sphinxdoc'],
26
 
-        test=['lazr.restful>=0.11.0',
27
 
-              'van.testing'],
28
 
+        test=[
29
 
+            'lazr.authentication',
30
 
+            'lazr.restful>=0.11.0',
31
 
+            'wsgi_intercept',
32
 
+            'van.testing'
33
 
+            ],
34
 
     ),
35
 
     test_suite='lazr.restfulclient.tests',
36
 
     )