Metadata-Version: 2.4
Name: Zope
Version: 6.0
Summary: Zope application server / web framework
Author-email: Zope Foundation and contributors <zope-dev@zope.dev>
Maintainer-email: Plone Foundation and contributors <zope-dev@zope.dev>
License-Expression: ZPL-2.1
Project-URL: Documentation, https://zope.readthedocs.io
Project-URL: Issues, https://github.com/zopefoundation/Zope/issues
Project-URL: Source, https://github.com/zopefoundation/Zope
Project-URL: Changelog, https://github.com/zopefoundation/Zope/blob/master/CHANGES.rst
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Web Environment
Classifier: Framework :: Zope
Classifier: Framework :: Zope :: 6
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: AccessControl
Requires-Dist: Acquisition
Requires-Dist: BTrees
Requires-Dist: Chameleon
Requires-Dist: DateTime
Requires-Dist: DocumentTemplate
Requires-Dist: ExtensionClass
Requires-Dist: MultiMapping
Requires-Dist: PasteDeploy
Requires-Dist: Persistence
Requires-Dist: RestrictedPython
Requires-Dist: ZConfig
Requires-Dist: ZODB
Requires-Dist: multipart
Requires-Dist: transaction
Requires-Dist: waitress
Requires-Dist: zExceptions
Requires-Dist: z3c.pt
Requires-Dist: zope.browser
Requires-Dist: zope.browsermenu
Requires-Dist: zope.browserpage
Requires-Dist: zope.browserresource
Requires-Dist: zope.component
Requires-Dist: zope.configuration
Requires-Dist: zope.container
Requires-Dist: zope.contentprovider
Requires-Dist: zope.contenttype
Requires-Dist: zope.datetime
Requires-Dist: zope.deferredimport
Requires-Dist: zope.event
Requires-Dist: zope.exceptions
Requires-Dist: zope.globalrequest
Requires-Dist: zope.i18n[zcml]
Requires-Dist: zope.i18nmessageid
Requires-Dist: zope.interface
Requires-Dist: zope.lifecycleevent
Requires-Dist: zope.location
Requires-Dist: zope.pagetemplate
Requires-Dist: zope.processlifetime
Requires-Dist: zope.proxy
Requires-Dist: zope.ptresource
Requires-Dist: zope.publisher
Requires-Dist: zope.schema
Requires-Dist: zope.security
Requires-Dist: zope.sequencesort
Requires-Dist: zope.site
Requires-Dist: zope.size
Requires-Dist: zope.tal
Requires-Dist: zope.tales
Requires-Dist: zope.testbrowser
Requires-Dist: zope.testing
Requires-Dist: zope.traversing
Requires-Dist: zope.viewlet
Provides-Extra: docs
Requires-Dist: Sphinx; extra == "docs"
Requires-Dist: furo; extra == "docs"
Requires-Dist: tempstorage; extra == "docs"
Requires-Dist: ZConfig; extra == "docs"
Provides-Extra: wsgi
Requires-Dist: Paste; extra == "wsgi"
Dynamic: license-file

.. image:: https://github.com/zopefoundation/Zope/actions/workflows/tests.yml/badge.svg
        :target: https://github.com/zopefoundation/Zope/actions/workflows/tests.yml

.. image:: https://coveralls.io/repos/github/zopefoundation/Zope/badge.svg?branch=master
        :target: https://coveralls.io/github/zopefoundation/Zope?branch=master

.. image:: https://readthedocs.org/projects/zope/badge/?version=latest
        :target: https://zope.readthedocs.org/en/latest/
        :alt: Documentation Status

.. image:: https://img.shields.io/pypi/v/Zope.svg
        :target: https://pypi.org/project/Zope/
        :alt: Current version on PyPI

.. image:: https://img.shields.io/pypi/pyversions/Zope.svg
        :target: https://pypi.org/project/Zope/
        :alt: Supported Python versions

.. |nbsp| unicode:: 0xA0 
        :trim:

|nbsp|

.. image:: https://zopefoundation.github.io/Zope/artwork/Zope.svg
        :alt: Zope logo
        :width: 300px

**Zope is an open-source web application server.**

This document provides some general information about Zope and provides
links to other documents. The full documentation can be found at
https://zope.readthedocs.io.


Installation
============

Please visit the installation documentation at
https://zope.readthedocs.io/en/latest/INSTALL.html for detailed installation
guidance.


License
=======

Zope is licensed under the OSI-approved `Zope Public License` (ZPL), version
2.1. The full license text is included in ``LICENSE.txt``.


Bug tracker
===========

Bugs reports should be made through the Zope bugtracker at
https://github.com/zopefoundation/Zope/issues.  A bug report should
contain detailed information about how to reproduce the bug.

Change log
==========

These are all changes for Zope 6.

The change log for Zope 4 is at
https://github.com/zopefoundation/Zope/blob/4.x/CHANGES.rst.
The change log for Zope 5 is at
https://github.com/zopefoundation/Zope/blob/5.x/CHANGES.rst.


6.0 (2026-03-04)
----------------

- Fix bad calls to ``str`` in ZMI DTML templates to prevent name shadowing.
  (`#1285 <https://github.com/zopefoundation/Zope/issues/1285>`_)

- Update to newest compatible versions of dependencies.


6.0b2 (2026-01-15)
------------------

- Update to newest compatible versions of dependencies.

- Fix installation of console scripts.


6.0b1 (2025-11-22)
------------------

- Replace ``pkg_resources`` namespaces with PEP 420 native namespaces.
  This change requires using ``zc.buildout`` version 5.

- Drop support for Python 3.9.

- Switch from `z3c.checkversions` to `plone.versioncheck` to detect outdated
  dependency pins as `z3c.checkversions` no longer works and seems abandoned.
  See https://github.com/zopefoundation/z3c.checkversions/issues/32

- Update to newest compatible versions of dependencies.

- Enable multipart/form-data and application/x-www-form-urlencoded support
  for PATCH requests.
