"""
Command Template
"""

from distutils import log
from buildutils.cmd import Command

class command_name(Command):
    description = "description of command"
    
    # list of (long name, short name, description) tuples
    user_options = []
    
    boolean_options = ['force']
    
    def initialize_options(self):
        pass
    
    def finalize_options(self):
        pass
    
    def run(self):
        pass

