blob: 8926391a5eb8bdee1ec595c5244c7ed8e28794d8 [file] [log] [blame]
Craig Citro751b7fb2014-09-23 11:20:38 -07001# Copyright 2014 Google Inc. All Rights Reserved.
Tom Miller7c95d812010-10-11 11:50:52 -07002#
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.
Joe Gregorio48d361f2010-08-18 13:19:21 -040014
Tom Miller7c95d812010-10-11 11:50:52 -070015"""Setup script for Google API Python client.
16
17Also installs included versions of third party libraries, if those libraries
18are not already installed.
19"""
Craig Citroa540cf72014-08-18 22:50:58 -070020from __future__ import print_function
21
22import sys
23
24if sys.version_info <= (2, 6):
25 print('oauth2client requires python version >= 2.6.', file=sys.stderr)
26 sys.exit(1)
27
Joe Gregorio336b9782011-09-15 14:35:54 -040028from setuptools import setup
Joe Gregorio01b92702011-03-23 21:44:42 -040029
Joe Gregorio6429bf62011-03-01 22:53:21 -080030packages = [
John Asmuth864311d2014-04-24 15:46:08 -040031 'googleapiclient',
32 'oauth2client',
John Asmuth864311d2014-04-24 15:46:08 -040033]
Joe Gregorio5cdaa512011-03-28 16:41:55 -040034
Joe Gregoriod667c9d2011-10-17 13:25:24 -040035install_requires = [
Joe Gregorio3cc9a452013-03-07 10:08:39 -050036 'httplib2>=0.8',
Craig Citro951b75f2014-08-18 23:14:20 -070037 'uritemplate>=0.6',
John Asmuth864311d2014-04-24 15:46:08 -040038]
Joe Gregorio6429bf62011-03-01 22:53:21 -080039
Joe Gregorio3ad5e9a2010-12-09 15:01:04 -050040long_desc = """The Google API Client for Python is a client library for
Joe Gregorioc4fc0952011-11-09 12:21:11 -050041accessing the Plus, Moderator, and many other Google APIs."""
Tom Miller7c95d812010-10-11 11:50:52 -070042
John Asmuth864311d2014-04-24 15:46:08 -040043import googleapiclient
44version = googleapiclient.__version__
Joe Gregorio696583c2012-03-21 15:20:51 -040045
John Asmuth864311d2014-04-24 15:46:08 -040046setup(
47 name="google-api-python-client",
48 version=version,
49 description="Google API Client Library for Python",
50 long_description=long_desc,
John Asmuth9c7fec52014-04-24 16:38:09 -040051 author="John Asmuth",
52 author_email="jasmuth@google.com",
John Asmuth864311d2014-04-24 15:46:08 -040053 url="http://github.com/google/google-api-python-client/",
54 install_requires=install_requires,
55 packages=packages,
56 package_data={},
57 license="Apache 2.0",
58 keywords="google api client",
59 classifiers=[
60 'Development Status :: 5 - Production/Stable',
61 'Intended Audience :: Developers',
62 'License :: OSI Approved :: Apache Software License',
63 'Operating System :: POSIX',
64 'Topic :: Internet :: WWW/HTTP',
65 ],
66 package_dir={
67 'oauth2client':'oauth2client/oauth2client',
John Asmuth864311d2014-04-24 15:46:08 -040068 },
69)