1 | |
---|
2 | [paste.global_paster_command] |
---|
3 | help=paste.script.help:HelpCommand |
---|
4 | create=paste.script.create_distro:CreateDistroCommand [Templating] |
---|
5 | serve=paste.script.serve:ServeCommand [Config] |
---|
6 | request=paste.script.request:RequestCommand [Config] |
---|
7 | post=paste.script.request:RequestCommand [Config] |
---|
8 | exe=paste.script.exe:ExeCommand |
---|
9 | points=paste.script.entrypoints:EntryPointCommand |
---|
10 | make-config=paste.script.appinstall:MakeConfigCommand |
---|
11 | setup-app=paste.script.appinstall:SetupCommand |
---|
12 | |
---|
13 | [paste.paster_command] |
---|
14 | grep = paste.script.grep:GrepCommand |
---|
15 | |
---|
16 | [paste.paster_create_template] |
---|
17 | basic_package=paste.script.templates:BasicPackage |
---|
18 | |
---|
19 | [paste.server_runner] |
---|
20 | wsgiutils=paste.script.wsgiutils_server:run_server [WSGIUtils] |
---|
21 | flup_ajp_thread=paste.script.flup_server:run_ajp_thread [Flup] |
---|
22 | flup_ajp_fork=paste.script.flup_server:run_ajp_fork [Flup] |
---|
23 | flup_fcgi_thread=paste.script.flup_server:run_fcgi_thread [Flup] |
---|
24 | flup_fcgi_fork=paste.script.flup_server:run_fcgi_fork [Flup] |
---|
25 | flup_scgi_thread=paste.script.flup_server:run_scgi_thread [Flup] |
---|
26 | flup_scgi_fork=paste.script.flup_server:run_scgi_fork [Flup] |
---|
27 | cgi=paste.script.cgi_server:paste_run_cgi |
---|
28 | cherrypy=paste.script.cherrypy_server:cpwsgi_server |
---|
29 | twisted=paste.script.twisted_web2_server:run_twisted |
---|
30 | |
---|
31 | [paste.app_factory] |
---|
32 | test=paste.script.testapp:make_test_application |
---|
33 | |
---|
34 | [paste.entry_point_description] |
---|
35 | paste.entry_point_description = paste.script.epdesc:MetaEntryPointDescription |
---|
36 | paste.paster_create_template = paste.script.epdesc:CreateTemplateDescription |
---|
37 | paste.paster_command = paste.script.epdesc:PasterCommandDescription |
---|
38 | paste.global_paster_command = paste.script.epdesc:GlobalPasterCommandDescription |
---|
39 | paste.app_install = paste.script.epdesc:AppInstallDescription |
---|
40 | |
---|
41 | # These aren't part of Paste Script particularly, but |
---|
42 | # we'll document them here |
---|
43 | console_scripts = paste.script.epdesc:ConsoleScriptsDescription |
---|
44 | # @@: Need non-console scripts... |
---|
45 | distutils.commands = paste.script.epdesc:DistutilsCommandsDescription |
---|
46 | distutils.setup_keywords = paste.script.epdesc:SetupKeywordsDescription |
---|
47 | egg_info.writers = paste.script.epdesc:EggInfoWriters |
---|
48 | # @@: Not sure what this does: |
---|
49 | #setuptools.file_finders = paste.script.epdesc:SetuptoolsFileFinders |
---|
50 | |
---|
51 | [console_scripts] |
---|
52 | paster=paste.script.command:run |
---|
53 | |
---|
54 | [distutils.setup_keywords] |
---|
55 | paster_plugins = setuptools.dist:assert_string_list |
---|
56 | |
---|
57 | [egg_info.writers] |
---|
58 | paster_plugins.txt = setuptools.command.egg_info:write_arg |
---|
59 | |
---|