-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b9d6d50
Showing
81 changed files
with
10,568 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Metadata-Version: 1.0 | ||
Name: PasteDeploy | ||
Version: 1.5.0 | ||
Summary: Load, configure, and compose WSGI applications and servers | ||
Home-page: http://pythonpaste.org/deploy/ | ||
Author: Alex Gronholm | ||
Author-email: [email protected] | ||
License: MIT | ||
Description: This tool provides code to load WSGI applications and servers from | ||
URIs; these URIs can refer to Python Eggs for INI-style configuration | ||
files. `Paste Script <http://pythonpaste.org/script>`_ provides | ||
commands to serve applications based on this configuration file. | ||
|
||
The latest version is available in a `Mercurial repository | ||
<http://bitbucket.org/ianb/pastedeploy>`_ (or a `tarball | ||
<http://bitbucket.org/ianb/pastedeploy/get/tip.gz#egg=PasteDeploy-dev>`_). | ||
|
||
For the latest changes see the `news file | ||
<http://pythonpaste.org/deploy/news.html>`_. | ||
|
||
Keywords: web wsgi application server | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 2.5 | ||
Classifier: Programming Language :: Python :: 2.6 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.1 | ||
Classifier: Programming Language :: Python :: 3.2 | ||
Classifier: Topic :: Internet :: WWW/HTTP | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI | ||
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Framework :: Paste |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
MANIFEST.in | ||
setup.cfg | ||
setup.py | ||
PasteDeploy.egg-info/PKG-INFO | ||
PasteDeploy.egg-info/SOURCES.txt | ||
PasteDeploy.egg-info/dependency_links.txt | ||
PasteDeploy.egg-info/entry_points.txt | ||
PasteDeploy.egg-info/namespace_packages.txt | ||
PasteDeploy.egg-info/not-zip-safe | ||
PasteDeploy.egg-info/requires.txt | ||
PasteDeploy.egg-info/top_level.txt | ||
docs/index.txt | ||
docs/license.txt | ||
docs/news.txt | ||
paste/__init__.py | ||
paste/deploy/__init__.py | ||
paste/deploy/compat.py | ||
paste/deploy/config.py | ||
paste/deploy/converters.py | ||
paste/deploy/loadwsgi.py | ||
paste/deploy/paster_templates.py | ||
paste/deploy/util.py | ||
paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl | ||
paste/deploy/paster_templates/paste_deploy/+package+/wsgiapp.py_tmpl | ||
paste/deploy/paster_templates/paste_deploy/docs/devel_config.ini_tmpl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
[paste.filter_app_factory] | ||
config = paste.deploy.config:make_config_filter [Config] | ||
prefix = paste.deploy.config:make_prefix_middleware | ||
|
||
[paste.paster_create_template] | ||
paste_deploy=paste.deploy.paster_templates:PasteDeploy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
paste |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
|
||
[Paste] | ||
Paste | ||
|
||
[Config] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
paste |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org) | ||
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php | ||
try: | ||
import pkg_resources | ||
pkg_resources.declare_namespace(__name__) | ||
except ImportError: | ||
# don't prevent use of paste if pkg_resources isn't installed | ||
from pkgutil import extend_path | ||
__path__ = extend_path(__path__, __name__) | ||
|
||
try: | ||
import modulefinder | ||
except ImportError: | ||
pass | ||
else: | ||
for p in __path__: | ||
modulefinder.AddPackagePath(__name__, p) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org) | ||
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php | ||
from paste.deploy.loadwsgi import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org) | ||
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php | ||
"""Python 2<->3 compatibility module""" | ||
import sys | ||
|
||
|
||
def print_(template, *args, **kwargs): | ||
template = str(template) | ||
if args: | ||
template = template % args | ||
elif kwargs: | ||
template = template % kwargs | ||
sys.stdout.writelines(template) | ||
|
||
if sys.version_info < (3, 0): | ||
basestring = basestring | ||
from ConfigParser import ConfigParser | ||
from urllib import unquote | ||
iteritems = lambda d: d.iteritems() | ||
|
||
def reraise(t, e, tb): | ||
exec('raise t, e, tb', dict(t=t, e=e, tb=tb)) | ||
else: | ||
basestring = str | ||
from configparser import ConfigParser | ||
from urllib.parse import unquote | ||
iteritems = lambda d: d.items() | ||
|
||
def reraise(t, e, tb): | ||
exec('raise e from tb', dict(e=e, tb=tb)) |
Oops, something went wrong.