mit neuen venv und exe-Files
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,44 @@
|
||||
Zope Public License (ZPL) Version 2.1
|
||||
|
||||
A copyright notice accompanies this license document that identifies the
|
||||
copyright holders.
|
||||
|
||||
This license has been certified as open source. It has also been designated as
|
||||
GPL compatible by the Free Software Foundation (FSF).
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions in source code must retain the accompanying copyright
|
||||
notice, this list of conditions, and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the accompanying copyright
|
||||
notice, this list of conditions, and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Names of the copyright holders must not be used to endorse or promote
|
||||
products derived from this software without prior written permission from the
|
||||
copyright holders.
|
||||
|
||||
4. The right to distribute this software or to use it for any purpose does not
|
||||
give you the right to use Servicemarks (sm) or Trademarks (tm) of the
|
||||
copyright
|
||||
holders. Use of them is covered by separate agreement with the copyright
|
||||
holders.
|
||||
|
||||
5. If any files are modified, you must cause the modified files to carry
|
||||
prominent notices stating that you changed the files and the date of any
|
||||
change.
|
||||
|
||||
Disclaimer
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
|
||||
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
||||
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
186
venv3_12/Lib/site-packages/zope.event-5.0.dist-info/METADATA
Normal file
186
venv3_12/Lib/site-packages/zope.event-5.0.dist-info/METADATA
Normal file
@@ -0,0 +1,186 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: zope.event
|
||||
Version: 5.0
|
||||
Summary: Very basic event publishing system
|
||||
Home-page: https://github.com/zopefoundation/zope.event
|
||||
Author: Zope Foundation and Contributors
|
||||
Author-email: zope-dev@zope.dev
|
||||
License: ZPL-2.1
|
||||
Keywords: event framework dispatch subscribe publish
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: Zope Public License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
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 :: 3.11
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: Jython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Classifier: Framework :: Zope :: 3
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
Requires-Python: >=3.7
|
||||
License-File: LICENSE.txt
|
||||
Requires-Dist: setuptools
|
||||
Provides-Extra: docs
|
||||
Requires-Dist: Sphinx ; extra == 'docs'
|
||||
Provides-Extra: test
|
||||
Requires-Dist: zope.testrunner ; extra == 'test'
|
||||
|
||||
=======================
|
||||
``zope.event`` README
|
||||
=======================
|
||||
|
||||
.. image:: https://img.shields.io/pypi/v/zope.event.svg
|
||||
:target: https://pypi.python.org/pypi/zope.event/
|
||||
:alt: Latest Version
|
||||
|
||||
.. image:: https://github.com/zopefoundation/zope.event/actions/workflows/tests.yml/badge.svg
|
||||
:target: https://github.com/zopefoundation/zope.event/actions/workflows/tests.yml
|
||||
|
||||
.. image:: https://readthedocs.org/projects/zopeevent/badge/?version=latest
|
||||
:target: http://zopeevent.readthedocs.org/en/latest/
|
||||
:alt: Documentation Status
|
||||
|
||||
The ``zope.event`` package provides a simple event system, including:
|
||||
|
||||
- An event publishing API, intended for use by applications which are
|
||||
unaware of any subscribers to their events.
|
||||
|
||||
- A very simple synchronous event-dispatching system, on which more sophisticated
|
||||
event dispatching systems can be built. For example, a type-based
|
||||
event dispatching system that builds on ``zope.event`` can be found in
|
||||
``zope.component``.
|
||||
|
||||
Please see http://zopeevent.readthedocs.io/ for the documentation.
|
||||
|
||||
==========================
|
||||
``zope.event`` Changelog
|
||||
==========================
|
||||
|
||||
5.0 (2023-06-23)
|
||||
================
|
||||
|
||||
- Drop support for Python 2.7, 3.5, 3.6.
|
||||
|
||||
|
||||
4.6 (2022-12-15)
|
||||
================
|
||||
|
||||
- Port documentation to Python 3.
|
||||
|
||||
- Add support for Python 3.10, 3.11.
|
||||
|
||||
|
||||
4.5.0 (2020-09-18)
|
||||
==================
|
||||
|
||||
- Add support for Python 3.8 and 3.9.
|
||||
|
||||
- Remove support for Python 3.4.
|
||||
|
||||
|
||||
4.4 (2018-10-05)
|
||||
================
|
||||
|
||||
- Add support for Python 3.7
|
||||
|
||||
|
||||
4.3.0 (2017-07-25)
|
||||
==================
|
||||
|
||||
- Add support for Python 3.6.
|
||||
|
||||
- Drop support for Python 3.3.
|
||||
|
||||
|
||||
4.2.0 (2016-02-17)
|
||||
==================
|
||||
|
||||
- Add support for Python 3.5.
|
||||
|
||||
- Drop support for Python 2.6 and 3.2.
|
||||
|
||||
|
||||
4.1.0 (2015-10-18)
|
||||
==================
|
||||
|
||||
- Require 100% branch (as well as statement) coverage.
|
||||
|
||||
- Add a simple class-based handler implementation.
|
||||
|
||||
|
||||
4.0.3 (2014-03-19)
|
||||
==================
|
||||
|
||||
- Add support for Python 3.4.
|
||||
|
||||
- Update ``boostrap.py`` to version 2.2.
|
||||
|
||||
|
||||
4.0.2 (2012-12-31)
|
||||
==================
|
||||
|
||||
- Flesh out PyPI Trove classifiers.
|
||||
|
||||
- Add support for jython 2.7.
|
||||
|
||||
|
||||
4.0.1 (2012-11-21)
|
||||
==================
|
||||
|
||||
- Add support for Python 3.3.
|
||||
|
||||
|
||||
4.0.0 (2012-05-16)
|
||||
==================
|
||||
|
||||
- Automate build of Sphinx HTML docs and running doctest snippets via tox.
|
||||
|
||||
- Drop explicit support for Python 2.4 / 2.5 / 3.1.
|
||||
|
||||
- Add support for PyPy.
|
||||
|
||||
|
||||
3.5.2 (2012-03-30)
|
||||
==================
|
||||
|
||||
- This release is the last which will maintain support for Python 2.4 /
|
||||
Python 2.5.
|
||||
|
||||
- Add support for continuous integration using ``tox`` and ``jenkins``.
|
||||
|
||||
- Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs
|
||||
``nose`` and ``coverage``).
|
||||
|
||||
- Add 'setup.py docs' alias (installs ``Sphinx`` and dependencies).
|
||||
|
||||
|
||||
3.5.1 (2011-08-04)
|
||||
==================
|
||||
|
||||
- Add Sphinx documentation.
|
||||
|
||||
|
||||
3.5.0 (2010-05-01)
|
||||
==================
|
||||
|
||||
- Add change log to ``long-description``.
|
||||
|
||||
- Add support for Python 3.x.
|
||||
|
||||
|
||||
3.4.1 (2009-03-03)
|
||||
==================
|
||||
|
||||
- A few minor cleanups.
|
||||
|
||||
|
||||
3.4.0 (2007-07-14)
|
||||
==================
|
||||
|
||||
- Initial release as a separate project.
|
||||
14
venv3_12/Lib/site-packages/zope.event-5.0.dist-info/RECORD
Normal file
14
venv3_12/Lib/site-packages/zope.event-5.0.dist-info/RECORD
Normal file
@@ -0,0 +1,14 @@
|
||||
zope.event-5.0-py3.11-nspkg.pth,sha256=SWEVH-jEWsKYrL0qoC6GBJaStx_iKxGoAY9PQycFVC4,529
|
||||
zope.event-5.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
zope.event-5.0.dist-info/LICENSE.txt,sha256=PmcdsR32h1FswdtbPWXkqjg-rKPCDOo_r1Og9zNdCjw,2070
|
||||
zope.event-5.0.dist-info/METADATA,sha256=M6gNfnFnH8LUu4qQQclpYHTzA-6D3kIRmhA7WNBtW3g,4438
|
||||
zope.event-5.0.dist-info/RECORD,,
|
||||
zope.event-5.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
||||
zope.event-5.0.dist-info/namespace_packages.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
||||
zope.event-5.0.dist-info/top_level.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
||||
zope/event/__init__.py,sha256=wSR1Y_yVzSd97zWmPCf4nLZqWyidlJ8_D85Ur_iYx1s,1142
|
||||
zope/event/__pycache__/__init__.cpython-312.pyc,,
|
||||
zope/event/__pycache__/classhandler.cpython-312.pyc,,
|
||||
zope/event/__pycache__/tests.cpython-312.pyc,,
|
||||
zope/event/classhandler.py,sha256=2xh4_ofStVc0an9FlHguXNTJwarIRYrWzR-LHf0Ud1Y,1820
|
||||
zope/event/tests.py,sha256=GpIP4EIxUZ0fA8vnT01Qv-B7vI6El2w9_prF0EmDrM8,1871
|
||||
@@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.40.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
zope
|
||||
@@ -0,0 +1 @@
|
||||
zope
|
||||
Reference in New Issue
Block a user