Initial import of setuptools, with integrated tests.
diff --git a/Lib/easy_install.py b/Lib/easy_install.py
new file mode 100644
index 0000000..b8b8412
--- /dev/null
+++ b/Lib/easy_install.py
@@ -0,0 +1,6 @@
+"""Run the EasyInstall command"""
+
+if __name__ == '__main__':
+    from setuptools.command.easy_install import main
+    main()
+