Updates from ISC to Apache2
authorLyndsy Simon <lyndsy@lyndsysimon.com>
Wed, 5 Dec 2012 22:19:14 +0000 (16:19 -0600)
committerLyndsy Simon <lyndsy@lyndsysimon.com>
Wed, 5 Dec 2012 22:19:14 +0000 (16:19 -0600)
README.rst
docs/index.rst
docs/user/intro.rst
requests/__init__.py
requests/api.py
setup.py

index 29d09c8a3607adc57653dbeaedd6387d7a7d9aa6..64021b8cd8d7ce8df04869d047c746b6941b77fd 100644 (file)
@@ -5,7 +5,7 @@ Requests: HTTP for Humans
 .. image:: https://secure.travis-ci.org/kennethreitz/requests.png?branch=develop
         :target: https://secure.travis-ci.org/kennethreitz/requests
 
-Requests is an ISC Licensed HTTP library, written in Python, for human
+Requests is an Apache2 Licensed HTTP library, written in Python, for human
 beings.
 
 Most existing Python modules for sending HTTP requests are extremely
index d469c66d08d5bed5073215ab01da28c53a844239..312c4e7e2a3bbea7b3b26f216c5c59038f8f656d 100644 (file)
@@ -8,7 +8,7 @@ Requests: HTTP for Humans
 
 Release v\ |version|. (:ref:`Installation <install>`)
 
-Requests is an :ref:`ISC Licensed <isc>` HTTP library, written in Python, for human beings.
+Requests is an :ref:`Apache2 Licensed <apache2>` HTTP library, written in Python, for human beings.
 
 Python's standard **urllib2** module provides most of
 the HTTP capabilities you need, but the API is thoroughly **broken**.
index c40528de006904c2d5bf3ebca55173ad8e0e1908..ae5e6393ee2d7720540f429bf6378180874a87e0 100644 (file)
@@ -17,9 +17,9 @@ Requests was developed with a few :pep:`20` idioms in mind.
 
 All contributions to Requests should keep these important rules in mind.
 
-.. _`isc`:
+.. _`apache2`:
 
-ISC License
+Apache2 License
 -----------
 
 A large number of open source projects you find today are `GPL Licensed`_.
@@ -33,10 +33,10 @@ The MIT, BSD, ISC, and Apache2 licenses are great alternatives to the GPL
 that allow your open-source software to be used freely in proprietary,
 closed-source software.
 
-Requests is released under terms of `The ISC License`_.
+Requests is released under terms of `Apache2 License`_.
 
 .. _`GPL Licensed`: http://www.opensource.org/licenses/gpl-license.php
-.. _`The ISC License`: http://www.opensource.org/licenses/isc-license
+.. _`Apache2 License`: http://opensource.org/licenses/Apache-2.0
 
 
 Requests License
index 70162ee7264310253b670a504aef28d0555f1e66..8e5b6b0ecd8d1cb4b61d4ced56726c47fffaf9cb 100644 (file)
@@ -37,7 +37,7 @@ The other HTTP methods are supported - see `requests.api`. Full documentation
 is at <http://python-requests.org>.
 
 :copyright: (c) 2012 by Kenneth Reitz.
-:license: ISC, see LICENSE for more details.
+:license: Apache 2.0, see LICENSE for more details.
 
 """
 
@@ -45,7 +45,7 @@ __title__ = 'requests'
 __version__ = '0.14.2'
 __build__ = 0x001402
 __author__ = 'Kenneth Reitz'
-__license__ = 'ISC'
+__license__ = 'Apache 2.0'
 __copyright__ = 'Copyright 2012 Kenneth Reitz'
 
 
index a0c17312096503132e7574186baf676c9bd94f1e..cb64b69cd6626e558a36fa20140a3296f0d399c2 100644 (file)
@@ -7,7 +7,7 @@ requests.api
 This module implements the Requests API.
 
 :copyright: (c) 2012 by Kenneth Reitz.
-:license: ISC, see LICENSE for more details.
+:license: Apache2, see LICENSE for more details.
 
 """
 
index 82ee8709c23583ad439341239476683467dedbf7..6c39182be3206855bfa957dc51817bef341a4259 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -45,7 +45,7 @@ setup(
         'Development Status :: 5 - Production/Stable',
         'Intended Audience :: Developers',
         'Natural Language :: English',
-        'License :: OSI Approved :: ISC License (ISCL)',
+        'License :: OSI Approved :: Apache Software License',
         'Programming Language :: Python',
         'Programming Language :: Python :: 2.6',
         'Programming Language :: Python :: 2.7',