From: Cory Benfield Date: Wed, 29 Jan 2014 19:21:04 +0000 (+0000) Subject: Avoid breaking crappy distribution methods. X-Git-Tag: v2.3.0~34^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0163a836a104bfd03ceb27055e88d726b53be1ff;p=services%2Fpython-requests.git Avoid breaking crappy distribution methods. --- diff --git a/setup.py b/setup.py index 16ba717..879d94a 100755 --- a/setup.py +++ b/setup.py @@ -30,8 +30,6 @@ with open('README.rst') as f: readme = f.read() with open('HISTORY.rst') as f: history = f.read() -with open('LICENSE') as f: - license = f.read() setup( name='requests', @@ -46,7 +44,7 @@ setup( package_dir={'requests': 'requests'}, include_package_data=True, install_requires=requires, - license=license, + license='Apache 2.0', zip_safe=False, classifiers=( 'Development Status :: 5 - Production/Stable',