25
25
print ('google-api-python-client requires python version >= 2.6.' ,
26
26
file = sys .stderr )
27
27
sys .exit (1 )
28
+ if (3 , 1 ) <= sys .version_info < (3 , 3 ):
29
+ print ('google-api-python-client requires python3 version >= 3.3.' ,
30
+ file = sys .stderr )
31
+ sys .exit (1 )
28
32
29
33
from setuptools import setup
30
34
import pkg_resources
@@ -59,7 +63,7 @@ def _DetectBadness():
59
63
60
64
install_requires = [
61
65
'httplib2>=0.8' ,
62
- 'oauth2client>=1.3 ' ,
66
+ 'oauth2client>=1.4.6 ' ,
63
67
'six>=1.6.1' ,
64
68
'uritemplate>=0.6' ,
65
69
]
@@ -86,10 +90,16 @@ def _DetectBadness():
86
90
license = "Apache 2.0" ,
87
91
keywords = "google api client" ,
88
92
classifiers = [
93
+ 'Programming Language :: Python :: 2' ,
94
+ 'Programming Language :: Python :: 2.6' ,
95
+ 'Programming Language :: Python :: 2.7' ,
96
+ 'Programming Language :: Python :: 3' ,
97
+ 'Programming Language :: Python :: 3.3' ,
98
+ 'Programming Language :: Python :: 3.4' ,
89
99
'Development Status :: 5 - Production/Stable' ,
90
100
'Intended Audience :: Developers' ,
91
101
'License :: OSI Approved :: Apache Software License' ,
92
- 'Operating System :: POSIX ' ,
102
+ 'Operating System :: OS Independent ' ,
93
103
'Topic :: Internet :: WWW/HTTP' ,
94
104
],
95
105
)
0 commit comments