From 5d7dbb3d58067f8ba47f68884eeaba90a5a664f5 Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Wed, 23 Mar 2011 17:21:43 -0400 Subject: [PATCH] Fix installer issue with gflags --- MANIFEST.in | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 138cc64..0e0e58b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -5,4 +5,5 @@ recursive-include samples *.py *.png *.html *.yaml *.json include runtests.py include setpath.sh include setup_utils.py - +include gflags.py +include gflags_validators.py diff --git a/setup.py b/setup.py index 30eb61d..2cb03ef 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ packages = [ 'uritemplate', ] -third_party_reqs = ['httplib2'] +third_party_reqs = ['httplib2', 'gflags', 'gflags_validators'] # Don't clobber installed versions of third party libraries # with what we include. @@ -47,7 +47,7 @@ long_desc = """The Google API Client for Python is a client library for accessing the Buzz, Moderator, and Latitude APIs.""" setup(name="google-api-python-client", - version="1.0alpha4", + version="1.0alpha5", description="Google API Client Library for Python", long_description=long_desc, author="Joe Gregorio",