blob: e13b99bec30247113f9f0db8438d183bf4e9ab59 [file] [log] [blame]
Joe Gregorio48d361f2010-08-18 13:19:21 -04001#!/usr/bin/env python
2from distutils.core import setup
3
4# First pass at a setup.py, in the long run we will
5# need two, one for a version of the library that just
6# includes apiclient, and another that also includes
7# all of the dependencies.
8setup(name="google-api-python-client",
9 version="0.1",
10 description="Google API Client Library for Python",
11 author="Joe Gregorio",
12 author_email="jcgregorio@google.com",
13 url="http://code.google.com/p/google-api-python-client/",
14 py_modules = ['apiclient', 'oauth2', 'simplejson', 'uritemplate'],
15 license = "Apache 2.0",
16 keywords="google api client")