blob: fbed1ae31736a9adbe2bf68c8b82b6c959092789 [file] [log] [blame]
Joe Gregoriod92897c2011-07-07 11:44:56 -04001# 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
17Also installs included versions of third party libraries, if those libraries
18are not already installed.
19"""
Joe Gregorio336b9782011-09-15 14:35:54 -040020from setuptools import setup
Joe Gregoriod92897c2011-07-07 11:44:56 -040021
22packages = [
23 'oauth2client',
24]
25
Joe Gregoriod667c9d2011-10-17 13:25:24 -040026install_requires = [
Joe Gregorioc2928a42012-02-23 13:43:59 -050027 'httplib2>=0.7.2',
Joe Gregoriod667c9d2011-10-17 13:25:24 -040028 'python-gflags',
29 ]
Joe Gregoriod92897c2011-07-07 11:44:56 -040030
Joe Gregoriod667c9d2011-10-17 13:25:24 -040031try:
32 import json
33 needs_json = False
Joe Gregorio1a4a2d32011-11-03 10:44:44 -040034except ImportError:
Joe Gregoriod667c9d2011-10-17 13:25:24 -040035 needs_json = True
Joe Gregoriod92897c2011-07-07 11:44:56 -040036
Joe Gregoriod667c9d2011-10-17 13:25:24 -040037if needs_json:
38 install_requires.append('simplejson')
Joe Gregoriod92897c2011-07-07 11:44:56 -040039
40long_desc = """The oauth2client is a client library for OAuth 2.0."""
41
42setup(name="oauth2client",
Joe Gregorio2401bd62011-12-15 09:18:49 -050043 version="1.0beta7",
Joe Gregoriod92897c2011-07-07 11:44:56 -040044 description="OAuth 2.0 client library",
45 long_description=long_desc,
46 author="Joe Gregorio",
47 author_email="jcgregorio@google.com",
48 url="http://code.google.com/p/google-api-python-client/",
49 install_requires=install_requires,
50 packages=packages,
Joe Gregoriod92897c2011-07-07 11:44:56 -040051 license="Apache 2.0",
52 keywords="google oauth 2.0 http client",
53 classifiers=['Development Status :: 4 - Beta',
54 'Intended Audience :: Developers',
55 'License :: OSI Approved :: Apache Software License',
56 'Operating System :: POSIX',
57 'Topic :: Internet :: WWW/HTTP'])