Skip to content

Commit 136da2c

Browse files
dhermesJon Wayne Parrott
authored andcommitted
Updating README/setup.py for new location. (#3)
- Based on googleapis/google-auth-library-python#167 - Fixed "and and" typo - Fixed URL for project - Updated the package description to explain it was for `httplib2` transport - Added `httplib2` as a dependency
1 parent 587e34e commit 136da2c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
This library provides an `httplib2`_ transport for `google-auth`_.
77

8-
.. note:: ``httplib`` has lots of problems such as lack of threadsafety and
8+
.. note:: ``httplib`` has lots of problems such as lack of threadsafety
99
and insecure usage of TLS. Using it is highly discouraged. This
1010
library is intended to help existing users of ``oauth2client`` migrate to
1111
``google-auth``.
@@ -14,7 +14,7 @@ This library provides an `httplib2`_ transport for `google-auth`_.
1414
:target: https://pypi.python.org/pypi/google-auth-httplib2
1515

1616
.. _httplib2: https://github.com/httplib2/httplib2
17-
.. _google-auth: https://github.com/GoogleCloudPlatform/google-auth
17+
.. _google-auth: https://github.com/GoogleCloudPlatform/google-auth-library-python/
1818

1919
Installing
2020
----------

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818

1919

2020
DEPENDENCIES = (
21-
'google-auth'
21+
'google-auth',
22+
'httplib2 >= 0.9.1',
2223
)
2324

2425

@@ -31,9 +32,9 @@
3132
version='0.0.2',
3233
author='Google Cloud Platform',
3334
author_email='[email protected]',
34-
description='Google Authentication Library',
35+
description='Google Authentication Library: httplib2 transport',
3536
long_description=long_description,
36-
url='https://github.com/GoogleCloudPlatform/google-auth-library-python',
37+
url='https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2',
3738
py_modules=['google_auth_httplib2'],
3839
install_requires=DEPENDENCIES,
3940
license='Apache 2.0',

0 commit comments

Comments
 (0)