This commit is contained in:
Kenneth Reitz
2011-12-11 11:39:57 -05:00
parent 06eee390dd
commit 10eed6344c
3 changed files with 16 additions and 7 deletions
+6
View File
@@ -1,6 +1,12 @@
History
-------
0.8.4 (2011-12-11)
++++++++++++++++++
* Prefetch bugfix.
* Added license to installed version.
0.8.3 (2011-11-27)
++++++++++++++++++
+3 -2
View File
@@ -15,13 +15,14 @@ requests
"""
__title__ = 'requests'
__version__ = '0.8.3'
__build__ = 0x000803
__version__ = '0.8.4'
__build__ = 0x000804
__author__ = 'Kenneth Reitz'
__license__ = 'ISC'
__copyright__ = 'Copyright 2011 Kenneth Reitz'
from . import utils
from .models import Request, Response
from .api import request, get, head, post, patch, put, delete, options
+7 -5
View File
@@ -12,12 +12,12 @@ except ImportError:
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
if sys.argv[-1] == "test":
os.system("python test_requests.py")
if sys.argv[-1] == 'test':
os.system('python test_requests.py')
sys.exit()
required = []
@@ -34,12 +34,14 @@ setup(
author='Kenneth Reitz',
author_email='me@kennethreitz.com',
url='http://python-requests.org',
packages= [
packages=[
'requests',
'requests.packages',
'requests.packages.urllib3',
'requests.packages.oreos'
],
package_data={'': ['LICENSE', 'NOTICE']},
include_package_data=True,
install_requires=required,
license='ISC',
classifiers=(