Add missing dependency for uritemplates.

Fixes issue #247.
This commit is contained in:
Joe Gregorio
2013-03-13 09:27:53 -04:00
parent 34af29833e
commit 14eb973791
2 changed files with 3 additions and 7 deletions

View File

@@ -22,7 +22,6 @@ from setuptools import setup
packages = [
'apiclient',
'oauth2client',
'uritemplate',
]
install_requires = [
@@ -30,14 +29,12 @@ install_requires = [
'python-gflags',
]
needs_json = True
needs_json = False
try:
import json
needs_json = False
except ImportError:
try:
import simplejson
needs_json = False
except ImportError:
needs_json = True

View File

@@ -21,6 +21,7 @@ from setuptools import setup
packages = [
'oauth2client',
'uritemplate',
]
install_requires = [
@@ -28,14 +29,12 @@ install_requires = [
'python-gflags',
]
needs_json = True
needs_json = False
try:
import json
needs_json = False
except ImportError:
try:
import simplejson
needs_json = False
except ImportError:
needs_json = True