~james-w/ubuntu/lucid/python-wadllib/remove-elementtree

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: James Westby
  • Date: 2012-01-18 16:32:52 UTC
  • Revision ID: james.westby@canonical.com-20120118163252-ap8lqxen4ir61cvz
Removed dependency on elementtree from the egg-info dir as it is part of
python from 2.6 onwards. The package doesn't depend on it anyway, so
it won't make a difference to what is installed.
.
Having it listed in requires.txt meant that pkg_resources would error out
when used with anything that depends on python-wadllib, breaking other
software without cause.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
    license='LGPL v3',
55
55
    install_requires=[
56
56
        'setuptools',
57
 
        'elementtree',
58
57
        'lazr.uri',
59
58
        'simplejson',
60
59
        ],