Fix installer issue with gflags
diff --git a/MANIFEST.in b/MANIFEST.in
index 138cc64..0e0e58b 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -5,4 +5,5 @@
 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 @@
   '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 @@
 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",