We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e5b9bf commit 0682372Copy full SHA for 0682372
2 files changed
setup.py
@@ -21,7 +21,7 @@
21
22
import sys
23
24
-if sys.version_info <= (2, 6):
+if sys.version_info < (2, 6):
25
print('google-api-python-client requires python version >= 2.6.',
26
file=sys.stderr)
27
sys.exit(1)
@@ -39,6 +39,9 @@
39
'uritemplate>=0.6',
40
]
41
42
+if sys.version_info < (2, 7):
43
+ install_requires.append('argparse')
44
+
45
long_desc = """The Google API Client for Python is a client library for
46
accessing the Plus, Moderator, and many other Google APIs."""
47
tox.ini
@@ -6,11 +6,9 @@ deps = keyring
6
mox
7
pyopenssl
8
pycrypto==2.6
9
- django==1.2
+ django
10
webtest
11
nose
12
- uritemplate
13
- oauth2client
14
setenv = PYTHONPATH=../google_appengine
15
16
[testenv:py26]
0 commit comments