diff options
Diffstat (limited to 'dev-python/zope-app-wsgi/metadata.xml')
-rw-r--r-- | dev-python/zope-app-wsgi/metadata.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/zope-app-wsgi/metadata.xml b/dev-python/zope-app-wsgi/metadata.xml new file mode 100644 index 0000000..9b27098 --- /dev/null +++ b/dev-python/zope-app-wsgi/metadata.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <name>Julien Roy</name> + <email>julien@jroy.ca</email> + </maintainer> + <longdescription> + This package provides the WSGIPublisherApplication class which exposes the object publishing machinery in zope.publisher as a WSGI application. It also lets us bring up the Zope application server (parsing zope.conf and site.zcml) with a mere function call: + + >>> db = zope.app.wsgi.config('zope.conf') + This is especially useful for debugging. + + To bring up Zope and obtain the WSGI application object at the same time, use the getWSGIApplication function. + + This package also provides an easy to use application factory for PasteDeploy. You can simply specify an application configuration like this in your Paste configuration file: + + [app:main] + use = egg:zope.app.wsgi + config_file = %(here)s/zope.conf + Look for more documentation inside the package itself. + </longdescription> + <upstream> + <maintainer> + <name>Zope Foundation and Contributors</name> + <email>zope-dev@zope.org</email> + </maintainer> + <changelog>https://github.com/zopefoundation/zope.app.wsgi/blob/master/CHANGES.rst</changelog> + <bugs-to>https://github.com/zopefoundation/zope.app.wsgi/issues</bugs-to> + <remote-id type="github">zopefoundation/zope.app.wsgi</remote-id> + <remote-id type="pypi">zope.app.wsgi</remote-id> + </upstream> +</pkgmetadata> |