0001class MetaEntryPointDescription(object):
0002    description = """
0003    This is an entry point that describes other entry points.
0004    """
0005
0006class CreateTemplateDescription(object):
0007    description = """
0008    Entry point for creating the file layout for a new project
0009    from a template.
0010    """
0011
0012class PasterCommandDescription(object):
0013    description = """
0014    Entry point that adds a command to the ``paster`` script
0015    to a project that has specifically enabled the command.
0016    """
0017
0018class GlobalPasterCommandDescription(object):
0019    description = """
0020    Entry point that adds a command to the ``paster`` script
0021    globally.
0022    """
0023
0024class AppInstallDescription(object):
0025    description = """
0026    This defines a runner that can install the application given a
0027    configuration file.
0028    """
0029
0030##################################################
0031## Not in Paste per se, but we'll document
0032## them...
0033
0034class ConsoleScriptsDescription(object):
0035    description = """
0036    When a package is installed, any entry point listed here will be
0037    turned into a command-line script.
0038    """
0039
0040class DistutilsCommandsDescription(object):
0041    description = """
0042    This will add a new command when running
0043    ``python setup.py entry-point-name`` if the
0044    package uses setuptools.
0045    """
0046
0047class SetupKeywordsDescription(object):
0048    description = """
0049    This adds a new keyword to setup.py's setup() function, and a
0050    validator to validate the value.
0051    """
0052
0053class EggInfoWriters(object):
0054    description = """
0055    This adds a new writer that creates files in the PkgName.egg-info/
0056    directory.
0057    """