Renamed all command classes so they're exactly the same as the name of the
command itself: no more of this "FooBar class for foo_bar command"
silliness.
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 0e5b01c..b57ec6f 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -12,7 +12,7 @@
 from distutils.util import write_file
 
 
-class Install (Command):
+class install (Command):
 
     description = "install everything from build directory"