command_template 633 B

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