METADATA 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. Metadata-Version: 2.2
  2. Name: importlib_metadata
  3. Version: 8.6.1
  4. Summary: Read metadata from Python packages
  5. Author-email: "Jason R. Coombs" <jaraco@jaraco.com>
  6. Project-URL: Source, https://github.com/python/importlib_metadata
  7. Classifier: Development Status :: 5 - Production/Stable
  8. Classifier: Intended Audience :: Developers
  9. Classifier: License :: OSI Approved :: Apache Software License
  10. Classifier: Programming Language :: Python :: 3
  11. Classifier: Programming Language :: Python :: 3 :: Only
  12. Requires-Python: >=3.9
  13. Description-Content-Type: text/x-rst
  14. License-File: LICENSE
  15. Requires-Dist: typing-extensions>=3.6.4; python_version < "3.8"
  16. Provides-Extra: test
  17. Requires-Dist: pytest!=8.1.*,>=6; extra == "test"
  18. Requires-Dist: importlib_resources>=1.3; python_version < "3.9" and extra == "test"
  19. Requires-Dist: packaging; extra == "test"
  20. Requires-Dist: pyfakefs; extra == "test"
  21. Requires-Dist: flufl.flake8; extra == "test"
  22. Requires-Dist: pytest-perf>=0.9.2; extra == "test"
  23. Requires-Dist: jaraco.test>=5.4; extra == "test"
  24. Provides-Extra: doc
  25. Requires-Dist: sphinx>=3.5; extra == "doc"
  26. Requires-Dist: jaraco.packaging>=9.3; extra == "doc"
  27. Requires-Dist: rst.linker>=1.9; extra == "doc"
  28. Requires-Dist: furo; extra == "doc"
  29. Requires-Dist: sphinx-lint; extra == "doc"
  30. Requires-Dist: jaraco.tidelift>=1.4; extra == "doc"
  31. Provides-Extra: perf
  32. Requires-Dist: ipython; extra == "perf"
  33. Provides-Extra: check
  34. Requires-Dist: pytest-checkdocs>=2.4; extra == "check"
  35. Requires-Dist: pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"
  36. Provides-Extra: cover
  37. Requires-Dist: pytest-cov; extra == "cover"
  38. Provides-Extra: enabler
  39. Requires-Dist: pytest-enabler>=2.2; extra == "enabler"
  40. Provides-Extra: type
  41. Requires-Dist: pytest-mypy; extra == "type"
  42. .. image:: https://img.shields.io/pypi/v/importlib_metadata.svg
  43. :target: https://pypi.org/project/importlib_metadata
  44. .. image:: https://img.shields.io/pypi/pyversions/importlib_metadata.svg
  45. .. image:: https://github.com/python/importlib_metadata/actions/workflows/main.yml/badge.svg
  46. :target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22
  47. :alt: tests
  48. .. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json
  49. :target: https://github.com/astral-sh/ruff
  50. :alt: Ruff
  51. .. image:: https://readthedocs.org/projects/importlib-metadata/badge/?version=latest
  52. :target: https://importlib-metadata.readthedocs.io/en/latest/?badge=latest
  53. .. image:: https://img.shields.io/badge/skeleton-2024-informational
  54. :target: https://blog.jaraco.com/skeleton
  55. .. image:: https://tidelift.com/badges/package/pypi/importlib-metadata
  56. :target: https://tidelift.com/subscription/pkg/pypi-importlib-metadata?utm_source=pypi-importlib-metadata&utm_medium=readme
  57. Library to access the metadata for a Python package.
  58. This package supplies third-party access to the functionality of
  59. `importlib.metadata <https://docs.python.org/3/library/importlib.metadata.html>`_
  60. including improvements added to subsequent Python versions.
  61. Compatibility
  62. =============
  63. New features are introduced in this third-party library and later merged
  64. into CPython. The following table indicates which versions of this library
  65. were contributed to different versions in the standard library:
  66. .. list-table::
  67. :header-rows: 1
  68. * - importlib_metadata
  69. - stdlib
  70. * - 7.0
  71. - 3.13
  72. * - 6.5
  73. - 3.12
  74. * - 4.13
  75. - 3.11
  76. * - 4.6
  77. - 3.10
  78. * - 1.4
  79. - 3.8
  80. Usage
  81. =====
  82. See the `online documentation <https://importlib-metadata.readthedocs.io/>`_
  83. for usage details.
  84. `Finder authors
  85. <https://docs.python.org/3/reference/import.html#finders-and-loaders>`_ can
  86. also add support for custom package installers. See the above documentation
  87. for details.
  88. Caveats
  89. =======
  90. This project primarily supports third-party packages installed by PyPA
  91. tools (or other conforming packages). It does not support:
  92. - Packages in the stdlib.
  93. - Packages installed without metadata.
  94. Project details
  95. ===============
  96. * Project home: https://github.com/python/importlib_metadata
  97. * Report bugs at: https://github.com/python/importlib_metadata/issues
  98. * Code hosting: https://github.com/python/importlib_metadata
  99. * Documentation: https://importlib-metadata.readthedocs.io/
  100. For Enterprise
  101. ==============
  102. Available as part of the Tidelift Subscription.
  103. This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.
  104. `Learn more <https://tidelift.com/subscription/pkg/pypi-importlib-metadata?utm_source=pypi-importlib-metadata&utm_medium=referral&utm_campaign=github>`_.