command_template 719 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. # initialize_options()
  20. def finalize_options (self):
  21. if self.x is None:
  22. self.x =
  23. # finalize_options()
  24. def run (self):
  25. # run()
  26. # class x