Imported from SVN by Bitbucket

This commit is contained in:
2015-03-31 20:26:20 +00:00
committed by bitbucket
commit ceb7984dec
212 changed files with 49537 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
Metadata-Version: 1.0
Name: PasteScript
Version: 1.7.4.2
Summary: A pluggable command-line frontend, including commands to setup package file layouts
Home-page: http://pythonpaste.org/script/
Author: Ian Bicking
Author-email: ianb@colorstudy.com
License: MIT
Description: This is a pluggable command-line tool.
It includes some built-in features;
* Create file layouts for packages. For instance, ``paste create
--template=basic_package MyPackage`` will create a `setuptools
<http://peak.telecommunity.com/DevCenter/setuptools>`_-ready
file layout.
* Serving up web applications, with configuration based on
`paste.deploy <http://pythonpaste.org/deploy/paste-deploy.html>`_.
The latest version is available in a `Mercurial repository
<http://bitbucket.org/ianb/pastescript/>`_.
For the latest changes see the `news file
<http://pythonpaste.org/script/news.html>`_.
Changes in 1.7.4.2
------------------
* 1.7.4 had package release problems, was reverted; 1.7.4.1 also had
package problems.
* Include special ``here`` and ``__file__`` default vars for logging
config files, similar to PasteDeploy config loading.
* Allow Jython to import various bits from ``paste.script.command`` and
``paste.script.copydir`` without throwing an import error (subprocess
module cannot be imported on Jython). This allows PasteScript to work
minimally on Jython, although execution will fail for
``command.run_command`` and ``copydir.copydir``.
Keywords: web wsgi setuptools framework command-line setup
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Paste

View File

@@ -0,0 +1,92 @@
MANIFEST.in
setup.cfg
setup.py
PasteScript.egg-info/PKG-INFO
PasteScript.egg-info/SOURCES.txt
PasteScript.egg-info/dependency_links.txt
PasteScript.egg-info/entry_points.txt
PasteScript.egg-info/namespace_packages.txt
PasteScript.egg-info/not-zip-safe
PasteScript.egg-info/requires.txt
PasteScript.egg-info/top_level.txt
docs/conf.py
docs/developer.txt
docs/index.txt
docs/license.txt
docs/news.txt
docs/_build/developer.html
docs/_build/genindex.html
docs/_build/index.html
docs/_build/license.html
docs/_build/news.html
docs/_build/py-modindex.html
docs/_build/search.html
docs/_build/modules/checkperms.html
docs/_build/modules/cherrypy_server.html
docs/_build/modules/command.html
docs/_build/modules/copydir.html
docs/_build/modules/filemaker.html
docs/_build/modules/templates.html
docs/_build/modules/testapp.html
docs/_build/modules/util.secret.html
docs/modules/checkperms.txt
docs/modules/cherrypy_server.txt
docs/modules/command.txt
docs/modules/copydir.txt
docs/modules/filemaker.txt
docs/modules/templates.txt
docs/modules/testapp.txt
docs/modules/util.secret.txt
paste/__init__.py
paste/script/__init__.py
paste/script/appinstall.py
paste/script/bool_optparse.py
paste/script/cgi_server.py
paste/script/checkperms.py
paste/script/cherrypy_server.py
paste/script/command.py
paste/script/copydir.py
paste/script/create_distro.py
paste/script/default_sysconfig.py
paste/script/entrypoints.py
paste/script/epdesc.py
paste/script/exe.py
paste/script/filemaker.py
paste/script/flup_server.py
paste/script/grep.py
paste/script/help.py
paste/script/interfaces.py
paste/script/pluginlib.py
paste/script/request.py
paste/script/serve.py
paste/script/templates.py
paste/script/testapp.py
paste/script/twisted_web2_server.py
paste/script/wsgiutils_server.py
paste/script/paster-templates/basic_package/setup.cfg
paste/script/paster-templates/basic_package/setup.py_tmpl
paste/script/paster-templates/basic_package/+package+/__init__.py
paste/script/paster-templates/basic_package/docs/license.txt_tmpl
paste/script/util/__init__.py
paste/script/util/logging_config.py
paste/script/util/secret.py
paste/script/util/string24.py
paste/script/util/subprocess24.py
paste/script/util/uuid.py
tests/__init__.py
tests/test_egg_finder.py
tests/test_logging_config.py
tests/test_plugin_adder.py
tests/test_template_introspect.py
tests/appsetup/__init__.py
tests/appsetup/test_make_project.py
tests/appsetup/testfiles/admin_index.py
tests/appsetup/testfiles/conftest.py
tests/appsetup/testfiles/iscape.txt
tests/appsetup/testfiles/test_forbidden.py
tests/fake_packages/FakePlugin.egg/setup.py
tests/fake_packages/FakePlugin.egg/FakePlugin.egg-info/entry_points.txt
tests/fake_packages/FakePlugin.egg/FakePlugin.egg-info/paster_plugins.txt
tests/fake_packages/FakePlugin.egg/FakePlugin.egg-info/top_level.txt
tests/fake_packages/FakePlugin.egg/fakeplugin/__init__.py
tests/sample_templates/test1.txt

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,59 @@
[paste.global_paster_command]
help=paste.script.help:HelpCommand
create=paste.script.create_distro:CreateDistroCommand [Templating]
serve=paste.script.serve:ServeCommand [Config]
request=paste.script.request:RequestCommand [Config]
post=paste.script.request:RequestCommand [Config]
exe=paste.script.exe:ExeCommand
points=paste.script.entrypoints:EntryPointCommand
make-config=paste.script.appinstall:MakeConfigCommand
setup-app=paste.script.appinstall:SetupCommand
[paste.paster_command]
grep = paste.script.grep:GrepCommand
[paste.paster_create_template]
basic_package=paste.script.templates:BasicPackage
[paste.server_runner]
wsgiutils=paste.script.wsgiutils_server:run_server [WSGIUtils]
flup_ajp_thread=paste.script.flup_server:run_ajp_thread [Flup]
flup_ajp_fork=paste.script.flup_server:run_ajp_fork [Flup]
flup_fcgi_thread=paste.script.flup_server:run_fcgi_thread [Flup]
flup_fcgi_fork=paste.script.flup_server:run_fcgi_fork [Flup]
flup_scgi_thread=paste.script.flup_server:run_scgi_thread [Flup]
flup_scgi_fork=paste.script.flup_server:run_scgi_fork [Flup]
cgi=paste.script.cgi_server:paste_run_cgi
cherrypy=paste.script.cherrypy_server:cpwsgi_server
twisted=paste.script.twisted_web2_server:run_twisted
[paste.app_factory]
test=paste.script.testapp:make_test_application
[paste.entry_point_description]
paste.entry_point_description = paste.script.epdesc:MetaEntryPointDescription
paste.paster_create_template = paste.script.epdesc:CreateTemplateDescription
paste.paster_command = paste.script.epdesc:PasterCommandDescription
paste.global_paster_command = paste.script.epdesc:GlobalPasterCommandDescription
paste.app_install = paste.script.epdesc:AppInstallDescription
# These aren't part of Paste Script particularly, but
# we'll document them here
console_scripts = paste.script.epdesc:ConsoleScriptsDescription
# @@: Need non-console scripts...
distutils.commands = paste.script.epdesc:DistutilsCommandsDescription
distutils.setup_keywords = paste.script.epdesc:SetupKeywordsDescription
egg_info.writers = paste.script.epdesc:EggInfoWriters
# @@: Not sure what this does:
#setuptools.file_finders = paste.script.epdesc:SetuptoolsFileFinders
[console_scripts]
paster=paste.script.command:run
[distutils.setup_keywords]
paster_plugins = setuptools.dist:assert_string_list
[egg_info.writers]
paster_plugins.txt = setuptools.command.egg_info:write_arg

View File

@@ -0,0 +1 @@
paste

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,21 @@
Paste>=1.3
PasteDeploy
[Templating]
[Config]
PasteDeploy
[WSGIUtils]
WSGIUtils
[Flup]
Flup
[Cheetah]
Cheetah
[Paste]
PasteDeploy
Cheetah

View File

@@ -0,0 +1,2 @@
tests
paste