/usr/share/pyshared/paste/script/epdesc.py is in python-pastescript 1.7.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | class MetaEntryPointDescription(object):
description = """
This is an entry point that describes other entry points.
"""
class CreateTemplateDescription(object):
description = """
Entry point for creating the file layout for a new project
from a template.
"""
class PasterCommandDescription(object):
description = """
Entry point that adds a command to the ``paster`` script
to a project that has specifically enabled the command.
"""
class GlobalPasterCommandDescription(object):
description = """
Entry point that adds a command to the ``paster`` script
globally.
"""
class AppInstallDescription(object):
description = """
This defines a runner that can install the application given a
configuration file.
"""
##################################################
## Not in Paste per se, but we'll document
## them...
class ConsoleScriptsDescription(object):
description = """
When a package is installed, any entry point listed here will be
turned into a command-line script.
"""
class DistutilsCommandsDescription(object):
description = """
This will add a new command when running
``python setup.py entry-point-name`` if the
package uses setuptools.
"""
class SetupKeywordsDescription(object):
description = """
This adds a new keyword to setup.py's setup() function, and a
validator to validate the value.
"""
class EggInfoWriters(object):
description = """
This adds a new writer that creates files in the PkgName.egg-info/
directory.
"""
|