Skip to content

Commit 18602bd

Browse files
author
Sébastien de Melo
committed
merged with master branch
2 parents 2739a1c + 6c0adb7 commit 18602bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1531
-11589
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Build artifacts
2+
*.py[cod]
3+
oauth2client.egg-info/
4+
build/
5+
dist/
6+
7+
# Test files
8+
.tox/

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: python
2+
python: 2.7
3+
env:
4+
- TOX_ENV=py26
5+
- TOX_ENV=py27
6+
- TOX_ENV=pypy
7+
install:
8+
- pip install tox
9+
- pip install .
10+
script:
11+
- tox -e $TOX_ENV
12+
notifications:
13+
- email: false

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include README
1+
include README.md

README

Lines changed: 0 additions & 23 deletions
This file was deleted.

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[![Build Status](https://travis-ci.org/google/oauth2client.svg?branch=master)](https://travis-ci.org/google/oauth2client)
2+
3+
This is a client library for accessing resources protected by OAuth 2.0.
4+
5+
[Full documentation](http://google.github.io/oauth2client/)
6+
7+
Installation
8+
============
9+
10+
To install, simply say
11+
12+
$ easy_install --upgrade oauth2client
13+
14+
15+
Third Party Libraries
16+
=====================
17+
18+
These libraries will be installed when you install the client library:
19+
20+
* http://code.google.com/p/httplib2
21+
* http://pypi.python.org/pypi/simplejson/ (python version < 2.7 only)
22+
23+
Contributing
24+
============
25+
26+
Please see the
27+
[contributing page](http://google.github.io/oauth2client/contributing.html)
28+
for more information. In particular, we love pull requests -- but please make
29+
sure to sign the contributor license agreement.

googleapiclient/__init__.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

googleapiclient/channel.py

Lines changed: 0 additions & 285 deletions
This file was deleted.

0 commit comments

Comments
 (0)