Metadata-Version: 2.1
Name: zope.principalannotation
Version: 4.4
Summary: Annotations for Zope Principals
Home-page: https://github.com/zopefoundation/zope.principalannotation
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Keywords: zope security principal annotation
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope :: 3
Provides-Extra: test
Provides-Extra: docs
License-File: LICENSE.txt

==============================
 ``zope.principalannotation``
==============================

.. image:: https://img.shields.io/pypi/v/zope.principalannotation.svg
        :target: https://pypi.python.org/pypi/zope.principalannotation/
        :alt: Latest release

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

.. image:: https://travis-ci.com/zopefoundation/zope.principalannotation.svg?branch=master
        :target: https://travis-ci.com/zopefoundation/zope.principalannotation

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

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

This package implements annotations for zope.security principals. Common
annotation techniques, like ``AttributeAnnotations`` cannot be applied to
principals, since they are created on the fly for every request.

Documentation is hosted at https://zopeprincipalannotation.readthedocs.io/en/latest/.


=========
 Changes
=========

4.4 (2022-03-17)
================

- Add support for Python 3.8, 3.9 and 3.10.

- Drop support for Python 3.4.


4.3.0 (2018-10-19)
==================

- Add support for Python 3.7.


4.2.0 (2017-08-18)
==================

- Add support for Python 3.5 and 3.6.

- Drop support for Python 2.6 and 3.3.


4.1.1 (2015-06-02)
==================

- Replace use of long-deprecated ``zope.testing.doctest`` with stdlib's
  ``doctest``.


4.1.0 (2015-01-09)
==================

- Accomodate new methods added to ``zope.annotation.interfaces.IAnnotations``
  in upcoming zope.annotation 4.4.0 release.


4.0.0 (2014-12-24)
==================

- Add support for PyPy.

- Add support for Python 3.4.

- Add support for testing on Travis.


4.0.0a2 (2013-02-25)
====================

- Correct Trove classifiers.


4.0.0a1 (2013-02-24)
====================

- Add support for Python 3.3.

- Replace deprecated ``zope.interface.implements`` usage with equivalent
  ``zope.interface.implementer`` decorator.

- Drop support for Python 2.4 and 2.5.

3.6.1 (2010-05-05)
==================

- Fix a test failure in nested local site manager setup.

- Remove dependency on zope.container.

3.6.0 (2009-03-09)
==================

Initial release. This package was splitted off zope.app.principalannotation
to remove its dependencies on "zope 3 application server" components.

In addition, the following changes were made after split off:

 - The IAnnotations implementation was fixed to look in the higher-level
   utility not only on ``__getitem__``, but also on ``get`` and ``__nonzero``.

 - Tests was reworked into the README.txt doctest.

 - Added a buildout part that generates Sphinx documentation from the
   README.txt


