METADATA 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. Metadata-Version: 2.1
  2. Name: zope.event
  3. Version: 4.6
  4. Summary: Very basic event publishing system
  5. Home-page: https://github.com/zopefoundation/zope.event
  6. Author: Zope Foundation and Contributors
  7. Author-email: zope-dev@zope.org
  8. License: ZPL-2.1
  9. Keywords: event framework dispatch subscribe publish
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: Zope Public License
  14. Classifier: Operating System :: OS Independent
  15. Classifier: Programming Language :: Python
  16. Classifier: Programming Language :: Python :: 2
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.5
  20. Classifier: Programming Language :: Python :: 3.6
  21. Classifier: Programming Language :: Python :: 3.7
  22. Classifier: Programming Language :: Python :: 3.8
  23. Classifier: Programming Language :: Python :: 3.9
  24. Classifier: Programming Language :: Python :: 3.10
  25. Classifier: Programming Language :: Python :: 3.11
  26. Classifier: Programming Language :: Python :: Implementation :: CPython
  27. Classifier: Programming Language :: Python :: Implementation :: Jython
  28. Classifier: Programming Language :: Python :: Implementation :: PyPy
  29. Classifier: Framework :: Zope :: 3
  30. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  31. License-File: LICENSE.txt
  32. Requires-Dist: setuptools
  33. Provides-Extra: docs
  34. Requires-Dist: Sphinx ; extra == 'docs'
  35. Provides-Extra: test
  36. Requires-Dist: zope.testrunner ; extra == 'test'
  37. =======================
  38. ``zope.event`` README
  39. =======================
  40. .. image:: https://img.shields.io/pypi/v/zope.event.svg
  41. :target: https://pypi.python.org/pypi/zope.event/
  42. :alt: Latest Version
  43. .. image:: https://github.com/zopefoundation/zope.event/actions/workflows/tests.yml/badge.svg
  44. :target: https://github.com/zopefoundation/zope.event/actions/workflows/tests.yml
  45. .. image:: https://readthedocs.org/projects/zopeevent/badge/?version=latest
  46. :target: http://zopeevent.readthedocs.org/en/latest/
  47. :alt: Documentation Status
  48. The ``zope.event`` package provides a simple event system, including:
  49. - An event publishing API, intended for use by applications which are
  50. unaware of any subscribers to their events.
  51. - A very simple synchronous event-dispatching system, on which more sophisticated
  52. event dispatching systems can be built. For example, a type-based
  53. event dispatching system that builds on ``zope.event`` can be found in
  54. ``zope.component``.
  55. Please see http://zopeevent.readthedocs.io/ for the documentation.
  56. ==========================
  57. ``zope.event`` Changelog
  58. ==========================
  59. 4.6 (2022-12-15)
  60. ================
  61. - Port documentation to Python 3.
  62. - Add support for Python 3.10, 3.11.
  63. 4.5.0 (2020-09-18)
  64. ==================
  65. - Add support for Python 3.8 and 3.9.
  66. - Remove support for Python 3.4.
  67. 4.4 (2018-10-05)
  68. ================
  69. - Add support for Python 3.7
  70. 4.3.0 (2017-07-25)
  71. ==================
  72. - Add support for Python 3.6.
  73. - Drop support for Python 3.3.
  74. 4.2.0 (2016-02-17)
  75. ==================
  76. - Add support for Python 3.5.
  77. - Drop support for Python 2.6 and 3.2.
  78. 4.1.0 (2015-10-18)
  79. ==================
  80. - Require 100% branch (as well as statement) coverage.
  81. - Add a simple class-based handler implementation.
  82. 4.0.3 (2014-03-19)
  83. ==================
  84. - Add support for Python 3.4.
  85. - Update ``boostrap.py`` to version 2.2.
  86. 4.0.2 (2012-12-31)
  87. ==================
  88. - Flesh out PyPI Trove classifiers.
  89. - Add support for jython 2.7.
  90. 4.0.1 (2012-11-21)
  91. ==================
  92. - Add support for Python 3.3.
  93. 4.0.0 (2012-05-16)
  94. ==================
  95. - Automate build of Sphinx HTML docs and running doctest snippets via tox.
  96. - Drop explicit support for Python 2.4 / 2.5 / 3.1.
  97. - Add support for PyPy.
  98. 3.5.2 (2012-03-30)
  99. ==================
  100. - This release is the last which will maintain support for Python 2.4 /
  101. Python 2.5.
  102. - Add support for continuous integration using ``tox`` and ``jenkins``.
  103. - Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs
  104. ``nose`` and ``coverage``).
  105. - Add 'setup.py docs' alias (installs ``Sphinx`` and dependencies).
  106. 3.5.1 (2011-08-04)
  107. ==================
  108. - Add Sphinx documentation.
  109. 3.5.0 (2010-05-01)
  110. ==================
  111. - Add change log to ``long-description``.
  112. - Add support for Python 3.x.
  113. 3.4.1 (2009-03-03)
  114. ==================
  115. - A few minor cleanups.
  116. 3.4.0 (2007-07-14)
  117. ==================
  118. - Initial release as a separate project.