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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Stefano Rivera
  • Date: 2012-01-23 16:57:32 UTC
  • Revision ID: package-import@ubuntu.com-20120123165732-a2tdckbp47tksfd4
Tags: 0.12.0-2
* New maintainer.
* Move test dependencies to extras_require so that setuptools doesn't think
  they are needed for the code to work. Thanks James Westby.
  (Closes: #656353, LP: #918307)
* Drop pydist-overrides, now that these dependencies won't appear in
  requires.txt.
* Clean egg-info.
* Wrap and sort long lines in debian/control.
* Convert debian/copyright to DEP5 machine-readable format.
* Drop Breaks: ${python:Breaks}. No longer used by dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    license='LGPL v3',
57
57
    install_requires=[
58
58
        'httplib2',
59
 
        'lazr.authentication',
60
59
        'oauth',
61
60
        'setuptools',
62
61
        'wadllib>=1.1.4',
63
 
        'wsgi_intercept',
64
62
        ],
65
63
    url='https://launchpad.net/lazr.restfulclient',
66
64
    download_url= 'https://launchpad.net/lazr.restfulclient/+download',
73
71
    extras_require=dict(
74
72
        docs=['Sphinx',
75
73
              'z3c.recipe.sphinxdoc'],
76
 
        test=['lazr.restful>=0.11.0',
77
 
              'van.testing'],
 
74
        test=[
 
75
            'lazr.authentication',
 
76
            'lazr.restful>=0.11.0',
 
77
            'wsgi_intercept',
 
78
            'van.testing'
 
79
            ],
78
80
    ),
79
81
    test_suite='lazr.restfulclient.tests',
80
82
    )