Joe Gregorio | d92897c | 2011-07-07 11:44:56 -0400 | [diff] [blame] | 1 | # Copyright (C) 2010 Google Inc. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | """Setup script for oauth2client. |
| 16 | |
| 17 | Also installs included versions of third party libraries, if those libraries |
| 18 | are not already installed. |
| 19 | """ |
Joe Gregorio | 336b978 | 2011-09-15 14:35:54 -0400 | [diff] [blame] | 20 | from setuptools import setup |
Joe Gregorio | d92897c | 2011-07-07 11:44:56 -0400 | [diff] [blame] | 21 | |
| 22 | packages = [ |
| 23 | 'oauth2client', |
| 24 | ] |
| 25 | |
Joe Gregorio | d667c9d | 2011-10-17 13:25:24 -0400 | [diff] [blame] | 26 | install_requires = [ |
Joe Gregorio | 3026920 | 2012-03-02 14:12:25 -0800 | [diff] [blame] | 27 | 'httplib2>=0.7.4', |
Joe Gregorio | d667c9d | 2011-10-17 13:25:24 -0400 | [diff] [blame] | 28 | 'python-gflags', |
| 29 | ] |
Joe Gregorio | d92897c | 2011-07-07 11:44:56 -0400 | [diff] [blame] | 30 | |
Joe Gregorio | 921b8e4 | 2012-06-15 15:51:51 -0400 | [diff] [blame^] | 31 | needs_json = True |
Joe Gregorio | d667c9d | 2011-10-17 13:25:24 -0400 | [diff] [blame] | 32 | try: |
| 33 | import json |
| 34 | needs_json = False |
Joe Gregorio | 1a4a2d3 | 2011-11-03 10:44:44 -0400 | [diff] [blame] | 35 | except ImportError: |
Joe Gregorio | 921b8e4 | 2012-06-15 15:51:51 -0400 | [diff] [blame^] | 36 | try: |
| 37 | import simplejson |
| 38 | needs_json = False |
| 39 | except ImportError: |
| 40 | needs_json = True |
Joe Gregorio | d92897c | 2011-07-07 11:44:56 -0400 | [diff] [blame] | 41 | |
Joe Gregorio | d667c9d | 2011-10-17 13:25:24 -0400 | [diff] [blame] | 42 | if needs_json: |
| 43 | install_requires.append('simplejson') |
Joe Gregorio | d92897c | 2011-07-07 11:44:56 -0400 | [diff] [blame] | 44 | |
| 45 | long_desc = """The oauth2client is a client library for OAuth 2.0.""" |
| 46 | |
Joe Gregorio | 696583c | 2012-03-21 15:20:51 -0400 | [diff] [blame] | 47 | import oauth2client |
| 48 | version = oauth2client.__version__ |
| 49 | |
Joe Gregorio | d92897c | 2011-07-07 11:44:56 -0400 | [diff] [blame] | 50 | setup(name="oauth2client", |
Joe Gregorio | 696583c | 2012-03-21 15:20:51 -0400 | [diff] [blame] | 51 | version=version, |
Joe Gregorio | d92897c | 2011-07-07 11:44:56 -0400 | [diff] [blame] | 52 | description="OAuth 2.0 client library", |
| 53 | long_description=long_desc, |
| 54 | author="Joe Gregorio", |
| 55 | author_email="jcgregorio@google.com", |
| 56 | url="http://code.google.com/p/google-api-python-client/", |
| 57 | install_requires=install_requires, |
| 58 | packages=packages, |
Joe Gregorio | d92897c | 2011-07-07 11:44:56 -0400 | [diff] [blame] | 59 | license="Apache 2.0", |
| 60 | keywords="google oauth 2.0 http client", |
| 61 | classifiers=['Development Status :: 4 - Beta', |
| 62 | 'Intended Audience :: Developers', |
| 63 | 'License :: OSI Approved :: Apache Software License', |
| 64 | 'Operating System :: POSIX', |
| 65 | 'Topic :: Internet :: WWW/HTTP']) |