Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 951b75f

Browse files
committed
Add uritemplate as a dependency.
We removed uritemplate from oauth2client, so now we re-add it as a normal python package dependency.
1 parent 6ae34d7 commit 951b75f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
recursive-include uritemplate *.py
21
recursive-include apiclient *.json *.py
32
include CHANGELOG
43
include LICENSE

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
packages = [
3131
'googleapiclient',
3232
'oauth2client',
33-
'uritemplate',
3433
]
3534

3635
install_requires = [
3736
'httplib2>=0.8',
37+
'uritemplate>=0.6',
3838
]
3939

4040
long_desc = """The Google API Client for Python is a client library for
@@ -65,6 +65,5 @@
6565
],
6666
package_dir={
6767
'oauth2client':'oauth2client/oauth2client',
68-
'uritemplate':'oauth2client/uritemplate',
6968
},
7069
)

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ deps = keyring
99
django==1.2
1010
webtest
1111
nose
12+
uritemplate
1213
setenv = PYTHONPATH=../google_appengine
1314

1415
[testenv:py26]

0 commit comments

Comments
 (0)