METADATA 3.9 KB

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