Add some clarifying comments. Remove ez_setup.py.

Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
diff --git a/python/setup.py b/python/setup.py
index 79e2369..23193cb 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -8,19 +8,7 @@
 
 # We must use setuptools, not distutils, because we need to use the
 # namespace_packages option for the "google" package.
-try:
-  from setuptools import setup, Extension, find_packages
-except ImportError:
-  try:
-    from ez_setup import use_setuptools
-    use_setuptools()
-    from setuptools import setup, Extension, find_packages
-  except ImportError:
-    sys.stderr.write(
-        "Could not import setuptools; make sure you have setuptools or "
-        "ez_setup installed.\n"
-    )
-    raise
+from setuptools import setup, Extension, find_packages
 
 from distutils.command.clean import clean as _clean