1 | class MetaEntryPointDescription(object): |
---|
2 | description = """ |
---|
3 | This is an entry point that describes other entry points. |
---|
4 | """ |
---|
5 | |
---|
6 | class CreateTemplateDescription(object): |
---|
7 | description = """ |
---|
8 | Entry point for creating the file layout for a new project |
---|
9 | from a template. |
---|
10 | """ |
---|
11 | |
---|
12 | class 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 | |
---|
18 | class GlobalPasterCommandDescription(object): |
---|
19 | description = """ |
---|
20 | Entry point that adds a command to the ``paster`` script |
---|
21 | globally. |
---|
22 | """ |
---|
23 | |
---|
24 | class 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 | |
---|
34 | class 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 | |
---|
40 | class 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 | |
---|
47 | class 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 | |
---|
53 | class EggInfoWriters(object): |
---|
54 | description = """ |
---|
55 | This adds a new writer that creates files in the PkgName.egg-info/ |
---|
56 | directory. |
---|
57 | """ |
---|