Home | History | Annotate | Download | only in command
      1 """distutils.command.x
      2 
      3 Implements the Distutils 'x' command.
      4 """
      5 
      6 # created 2000/mm/dd, John Doe
      7 
      8 __revision__ = "$Id$"
      9 
     10 from distutils.core import Command
     11 
     12 
     13 class x(Command):
     14 
     15     # Brief (40-50 characters) description of the command
     16     description = ""
     17 
     18     # List of option tuples: long name, short name (None if no short
     19     # name), and help string.
     20     user_options = [('', '',
     21                      ""),
     22                    ]
     23 
     24     def initialize_options(self):
     25         self. = None
     26         self. = None
     27         self. = None
     28 
     29     def finalize_options(self):
     30         if self.x is None:
     31             self.x = 
     32 
     33     def run(self):
     34