command_template 633 Bytes
Newer Older
1 2
"""distutils.command.x

Greg Ward's avatar
Greg Ward committed
3 4
Implements the Distutils 'x' command.
"""
5

6
# created 2000/mm/dd, John Doe
7 8 9 10 11 12

__revision__ = "$Id$"

from distutils.core import Command


13
class x(Command):
14

15
    # Brief (40-50 characters) description of the command
16 17
    description = ""

18 19
    # List of option tuples: long name, short name (None if no short
    # name), and help string.
20 21 22 23
    user_options = [('', '',
                     ""),
                   ]

24
    def initialize_options(self):
25 26 27 28
        self. = None
        self. = None
        self. = None

29
    def finalize_options(self):
30 31
        if self.x is None:
            self.x = 
32

33
    def run(self):