Fix installer issue with gflags

This commit is contained in:
Joe Gregorio
2011-03-23 17:21:43 -04:00
parent e9e236f435
commit 5d7dbb3d58
2 changed files with 4 additions and 3 deletions

View File

@@ -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

View File

@@ -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",