METADATA 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. Metadata-Version: 2.1
  2. Name: singledispatch
  3. Version: 3.7.0
  4. Summary: Backport functools.singledispatch from Python 3.4 to Python 2.6-3.3.
  5. Home-page: https://github.com/jaraco/singledispatch
  6. Author: Jason R. Coombs
  7. Author-email: jaraco@jaraco.com
  8. License: UNKNOWN
  9. Keywords: single,dispatch,generic,functions,singledispatch,genericfunctions,decorator,backport
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: MIT License
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 2
  16. Classifier: Programming Language :: Python :: 2.6
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.2
  20. Classifier: Programming Language :: Python :: 3.3
  21. Classifier: Programming Language :: Python :: 3.4
  22. Classifier: Programming Language :: Python :: 3.5
  23. Classifier: Programming Language :: Python :: 3.6
  24. Classifier: Programming Language :: Python :: 3.7
  25. Classifier: Programming Language :: Python :: 3.8
  26. Classifier: Programming Language :: Python :: 3.9
  27. Classifier: Programming Language :: Python :: 3.10
  28. Requires-Python: >=2.6
  29. License-File: LICENSE
  30. Requires-Dist: six
  31. Requires-Dist: ordereddict ; python_version < "2.7"
  32. Provides-Extra: docs
  33. Requires-Dist: sphinx ; extra == 'docs'
  34. Requires-Dist: jaraco.packaging (>=8.2) ; extra == 'docs'
  35. Requires-Dist: rst.linker (>=1.9) ; extra == 'docs'
  36. Provides-Extra: testing
  37. Requires-Dist: pytest (>=4.6) ; extra == 'testing'
  38. Requires-Dist: pytest-flake8 ; extra == 'testing'
  39. Requires-Dist: pytest-cov ; extra == 'testing'
  40. Requires-Dist: pytest-black (>=0.3.7) ; (platform_python_implementation != "PyPy") and extra == 'testing'
  41. Requires-Dist: unittest2 ; (python_version < "3") and extra == 'testing'
  42. Requires-Dist: pytest-checkdocs (>=2.4) ; (python_version > "3.6") and extra == 'testing'
  43. .. image:: https://img.shields.io/pypi/v/singledispatch.svg
  44. :target: `PyPI link`_
  45. .. image:: https://img.shields.io/pypi/pyversions/singledispatch.svg
  46. :target: `PyPI link`_
  47. .. _PyPI link: https://pypi.org/project/singledispatch
  48. .. image:: https://github.com/jaraco/singledispatch/workflows/tests/badge.svg
  49. :target: https://github.com/jaraco/singledispatch/actions?query=workflow%3A%22tests%22
  50. :alt: tests
  51. .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
  52. :target: https://github.com/psf/black
  53. :alt: Code style: Black
  54. .. .. image:: https://readthedocs.org/projects/skeleton/badge/?version=latest
  55. .. :target: https://skeleton.readthedocs.io/en/latest/?badge=latest
  56. .. image:: https://img.shields.io/badge/skeleton-2021-informational
  57. :target: https://blog.jaraco.com/skeleton
  58. `PEP 443 <http://www.python.org/dev/peps/pep-0443/>`_ proposed to expose
  59. a mechanism in the ``functools`` standard library module in Python 3.4
  60. that provides a simple form of generic programming known as
  61. single-dispatch generic functions.
  62. This library is a backport of this functionality and its evolution.
  63. Refer to the `upstream documentation
  64. <http://docs.python.org/3/library/functools.html#functools.singledispatch>`_
  65. for API guidance. To use the backport, simply use
  66. ``from singledispatch import singledispatch, singledispatchmethod`` in place of
  67. ``from functools import singledispatch, singledispatchmethod``.
  68. Maintenance
  69. -----------
  70. This backport is maintained on Github by Jason R. Coombs, one of the
  71. members of the core CPython team:
  72. * `repository <https://github.com/jaraco/singledispatch>`_
  73. * `issue tracker <https://github.com/jaraco/singledispatch/issues>`_