1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
Metadata-Version: 2.4
Name: zope.security
Version: 8.3
Summary: Zope Security 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://zopesecurity.readthedocs.io
Project-URL: Issues, https://github.com/zopefoundation/zope.security/issues
Project-URL: Source, https://github.com/zopefoundation/zope.security
Project-URL: Changelog, https://github.com/zopefoundation/zope.security/blob/master/CHANGES.rst
Keywords: zope,security,policy,principal,permission
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Zope :: 3
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: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: zope.component
Requires-Dist: zope.i18nmessageid
Requires-Dist: zope.interface
Requires-Dist: zope.location
Requires-Dist: zope.proxy>=6.1
Requires-Dist: zope.schema>=4.2.0
Provides-Extra: docs
Requires-Dist: Sphinx; extra == "docs"
Requires-Dist: repoze.sphinx.autointerface; extra == "docs"
Requires-Dist: furo; extra == "docs"
Requires-Dist: zope.configuration; extra == "docs"
Requires-Dist: zope.testing; extra == "docs"
Provides-Extra: pytz
Requires-Dist: pytz; extra == "pytz"
Provides-Extra: test
Requires-Dist: BTrees; extra == "test"
Requires-Dist: zope.component; extra == "test"
Requires-Dist: zope.configuration; extra == "test"
Requires-Dist: zope.location; extra == "test"
Requires-Dist: zope.testing; extra == "test"
Requires-Dist: zope.testrunner>=6.4; extra == "test"
Provides-Extra: untrustedpython
Requires-Dist: zope.untrustedpython>=5; extra == "untrustedpython"
Provides-Extra: zcml
Requires-Dist: zope.configuration; extra == "zcml"
Dynamic: license-file
===================
``zope.security``
===================
.. image:: https://github.com/zopefoundation/zope.security/actions/workflows/tests.yml/badge.svg
:target: https://github.com/zopefoundation/zope.security/actions/workflows/tests.yml
.. image:: https://coveralls.io/repos/github/zopefoundation/zope.security/badge.svg?branch=master
:target: https://coveralls.io/github/zopefoundation/zope.security?branch=master
.. image:: https://readthedocs.org/projects/zopesecurity/badge/?version=latest
:target: https://zopesecurity.readthedocs.io/en/latest/
:alt: Documentation Status
.. image:: https://img.shields.io/pypi/v/zope.security.svg
:target: https://pypi.python.org/pypi/zope.security/
:alt: Latest release
.. image:: https://img.shields.io/pypi/pyversions/zope.security.svg
:target: https://pypi.org/project/zope.security/
:alt: Supported Python versions
The Security framework provides a generic mechanism to implement security
policies on Python objects.
Documentation is available at https://zopesecurity.readthedocs.io/
|