root/galaxy-central/eggs/PasteScript-1.7.3-py2.6.egg/paste/script/epdesc.py @ 3

リビジョン 3, 1.6 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1class MetaEntryPointDescription(object):
2    description = """
3    This is an entry point that describes other entry points.
4    """
5
6class CreateTemplateDescription(object):
7    description = """
8    Entry point for creating the file layout for a new project
9    from a template.
10    """
11
12class PasterCommandDescription(object):
13    description = """
14    Entry point that adds a command to the ``paster`` script
15    to a project that has specifically enabled the command.
16    """
17
18class GlobalPasterCommandDescription(object):
19    description = """
20    Entry point that adds a command to the ``paster`` script
21    globally.
22    """
23
24class AppInstallDescription(object):
25    description = """
26    This defines a runner that can install the application given a
27    configuration file.
28    """
29
30##################################################
31## Not in Paste per se, but we'll document
32## them...
33
34class ConsoleScriptsDescription(object):
35    description = """
36    When a package is installed, any entry point listed here will be
37    turned into a command-line script.
38    """
39
40class DistutilsCommandsDescription(object):
41    description = """
42    This will add a new command when running
43    ``python setup.py entry-point-name`` if the
44    package uses setuptools.
45    """
46
47class SetupKeywordsDescription(object):
48    description = """
49    This adds a new keyword to setup.py's setup() function, and a
50    validator to validate the value.
51    """
52
53class EggInfoWriters(object):
54    description = """
55    This adds a new writer that creates files in the PkgName.egg-info/
56    directory.
57    """
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。