Modified README and setup.py to install apiclient and included third party libraries.
Added setup_utils.py to test for installed modules.
diff --git a/README b/README
index 43e4611..5a5efe4 100644
--- a/README
+++ b/README
@@ -4,12 +4,27 @@
 Installation
 ============
 
-None. 
+To install, simply say
 
-For the time being the required libraries
-are checked into this directory to make 
-developement easier, so you can just run
-this directly after checking out.
+   $ python setup.py install --record=files.txt
+
+to install the files and record what files are installed in files.txt.
+
+If you want to do a "mock install" and simply extend your PYTHONPATH
+for the current shell to include this folder and the packages in it, do
+
+   $ source setpath.sh
+
+from the root of the project directory.
+
+
+Uninstall
+=========
+
+   $ cat files.txt | xargs rm -rf
+
+You may need root privileges to do this.
+
 
 Running
 =======
@@ -26,6 +41,9 @@
 
    $ python samples/cmdline/buzz.py
 
+After following the install directions (using setup.py or setpath.sh) you
+should be able to cd to samples/cmdline and run the code from there.
+
 
 Third Party Libraries
 ====================
@@ -33,4 +51,3 @@
 http://code.google.com/p/httplib2
 http://code.google.com/p/uri-templates
 http://github.com/simplegeo/python-oauth2
-