METADATA 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. Metadata-Version: 2.1
  2. Name: importlib-metadata
  3. Version: 4.11.4
  4. Summary: Read metadata from Python packages
  5. Home-page: https://github.com/python/importlib_metadata
  6. Author: Jason R. Coombs
  7. Author-email: jaraco@jaraco.com
  8. Classifier: Development Status :: 5 - Production/Stable
  9. Classifier: Intended Audience :: Developers
  10. Classifier: License :: OSI Approved :: Apache Software License
  11. Classifier: Programming Language :: Python :: 3
  12. Classifier: Programming Language :: Python :: 3 :: Only
  13. Requires-Python: >=3.7
  14. License-File: LICENSE
  15. Requires-Dist: zipp (>=0.5)
  16. Requires-Dist: typing-extensions (>=3.6.4) ; python_version < "3.8"
  17. Provides-Extra: docs
  18. Requires-Dist: sphinx ; extra == 'docs'
  19. Requires-Dist: jaraco.packaging (>=9) ; extra == 'docs'
  20. Requires-Dist: rst.linker (>=1.9) ; extra == 'docs'
  21. Provides-Extra: perf
  22. Requires-Dist: ipython ; extra == 'perf'
  23. Provides-Extra: testing
  24. Requires-Dist: pytest (>=6) ; extra == 'testing'
  25. Requires-Dist: pytest-checkdocs (>=2.4) ; extra == 'testing'
  26. Requires-Dist: pytest-flake8 ; extra == 'testing'
  27. Requires-Dist: pytest-cov ; extra == 'testing'
  28. Requires-Dist: pytest-enabler (>=1.0.1) ; extra == 'testing'
  29. Requires-Dist: packaging ; extra == 'testing'
  30. Requires-Dist: pyfakefs ; extra == 'testing'
  31. Requires-Dist: flufl.flake8 ; extra == 'testing'
  32. Requires-Dist: pytest-perf (>=0.9.2) ; extra == 'testing'
  33. Requires-Dist: pytest-black (>=0.3.7) ; (platform_python_implementation != "PyPy") and extra == 'testing'
  34. Requires-Dist: pytest-mypy (>=0.9.1) ; (platform_python_implementation != "PyPy") and extra == 'testing'
  35. Requires-Dist: importlib-resources (>=1.3) ; (python_version < "3.9") and extra == 'testing'
  36. .. image:: https://img.shields.io/pypi/v/importlib_metadata.svg
  37. :target: `PyPI link`_
  38. .. image:: https://img.shields.io/pypi/pyversions/importlib_metadata.svg
  39. :target: `PyPI link`_
  40. .. _PyPI link: https://pypi.org/project/importlib_metadata
  41. .. image:: https://github.com/python/importlib_metadata/workflows/tests/badge.svg
  42. :target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22
  43. :alt: tests
  44. .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
  45. :target: https://github.com/psf/black
  46. :alt: Code style: Black
  47. .. image:: https://readthedocs.org/projects/importlib-metadata/badge/?version=latest
  48. :target: https://importlib-metadata.readthedocs.io/en/latest/?badge=latest
  49. .. image:: https://img.shields.io/badge/skeleton-2022-informational
  50. :target: https://blog.jaraco.com/skeleton
  51. Library to access the metadata for a Python package.
  52. This package supplies third-party access to the functionality of
  53. `importlib.metadata <https://docs.python.org/3/library/importlib.metadata.html>`_
  54. including improvements added to subsequent Python versions.
  55. Compatibility
  56. =============
  57. New features are introduced in this third-party library and later merged
  58. into CPython. The following table indicates which versions of this library
  59. were contributed to different versions in the standard library:
  60. .. list-table::
  61. :header-rows: 1
  62. * - importlib_metadata
  63. - stdlib
  64. * - 4.8
  65. - 3.11
  66. * - 4.4
  67. - 3.10
  68. * - 1.4
  69. - 3.8
  70. Usage
  71. =====
  72. See the `online documentation <https://importlib_metadata.readthedocs.io/>`_
  73. for usage details.
  74. `Finder authors
  75. <https://docs.python.org/3/reference/import.html#finders-and-loaders>`_ can
  76. also add support for custom package installers. See the above documentation
  77. for details.
  78. Caveats
  79. =======
  80. This project primarily supports third-party packages installed by PyPA
  81. tools (or other conforming packages). It does not support:
  82. - Packages in the stdlib.
  83. - Packages installed without metadata.
  84. Project details
  85. ===============
  86. * Project home: https://github.com/python/importlib_metadata
  87. * Report bugs at: https://github.com/python/importlib_metadata/issues
  88. * Code hosting: https://github.com/python/importlib_metadata
  89. * Documentation: https://importlib_metadata.readthedocs.io/