Author: rbogorodskiy
Date: Fri Jun 24 11:28:08 2011
New Revision: 1139248

URL: http://svn.apache.org/viewvc?rev=1139248&view=rev
Log:
Provide description for our custom distutils commands.

Modified:
    libcloud/trunk/setup.py

Modified: libcloud/trunk/setup.py
URL: 
http://svn.apache.org/viewvc/libcloud/trunk/setup.py?rev=1139248&r1=1139247&r2=1139248&view=diff
==============================================================================
--- libcloud/trunk/setup.py (original)
+++ libcloud/trunk/setup.py Fri Jun 24 11:28:08 2011
@@ -40,6 +40,7 @@ def read_version_string():
     return version
 
 class TestCommand(Command):
+    description = "run test suite"
     user_options = []
 
     def initialize_options(self):
@@ -101,6 +102,7 @@ class TestCommand(Command):
         return not res.wasSuccessful()
 
 class ApiDocsCommand(Command):
+    description = "generate API documentation"
     user_options = []
 
     def initialize_options(self):
@@ -122,6 +124,7 @@ class ApiDocsCommand(Command):
         )
 
 class CoverageCommand(Command):
+    description = "run test suite and generate coverage report"
     user_options = []
 
     def initialize_options(self):


Reply via email to