|
| 1 | +Metadata-Version: 2.1 |
| 2 | +Name: importlib-metadata |
| 3 | +Version: 4.10.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.7 |
| 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 (>=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: pyfakefs ; extra == 'testing' |
| 33 | +Requires-Dist: flufl.flake8 ; extra == 'testing' |
| 34 | +Requires-Dist: pytest-perf (>=0.9.2) ; extra == 'testing' |
| 35 | +Requires-Dist: pytest-black (>=0.3.7) ; (platform_python_implementation != "PyPy") and extra == 'testing' |
| 36 | +Requires-Dist: pytest-mypy ; (platform_python_implementation != "PyPy") and extra == 'testing' |
| 37 | +Requires-Dist: importlib-resources (>=1.3) ; (python_version < "3.9") and extra == 'testing' |
| 38 | + |
| 39 | +.. image:: https://img.shields.io/pypi/v/importlib_metadata.svg |
| 40 | + :target: `PyPI link`_ |
| 41 | + |
| 42 | +.. image:: https://img.shields.io/pypi/pyversions/importlib_metadata.svg |
| 43 | + :target: `PyPI link`_ |
| 44 | + |
| 45 | +.. _PyPI link: https://pypi.org/project/importlib_metadata |
| 46 | + |
| 47 | +.. image:: https://github.com/python/importlib_metadata/workflows/tests/badge.svg |
| 48 | + :target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22 |
| 49 | + :alt: tests |
| 50 | + |
| 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 | + |
| 55 | +.. image:: https://readthedocs.org/projects/importlib-metadata/badge/?version=latest |
| 56 | + :target: https://importlib-metadata.readthedocs.io/en/latest/?badge=latest |
| 57 | + |
| 58 | +.. image:: https://img.shields.io/badge/skeleton-2021-informational |
| 59 | + :target: https://blog.jaraco.com/skeleton |
| 60 | + |
| 61 | + |
| 62 | +Library to access the metadata for a Python package. |
| 63 | + |
| 64 | +This package supplies third-party access to the functionality of |
| 65 | +`importlib.metadata <https://docs.python.org/3/library/importlib.metadata.html>`_ |
| 66 | +including improvements added to subsequent Python versions. |
| 67 | + |
| 68 | + |
| 69 | +Compatibility |
| 70 | +============= |
| 71 | + |
| 72 | +New features are introduced in this third-party library and later merged |
| 73 | +into CPython. The following table indicates which versions of this library |
| 74 | +were contributed to different versions in the standard library: |
| 75 | + |
| 76 | +.. list-table:: |
| 77 | + :header-rows: 1 |
| 78 | + |
| 79 | + * - importlib_metadata |
| 80 | + - stdlib |
| 81 | + * - 4.8 |
| 82 | + - 3.11 |
| 83 | + * - 4.4 |
| 84 | + - 3.10 |
| 85 | + * - 1.4 |
| 86 | + - 3.8 |
| 87 | + |
| 88 | + |
| 89 | +Usage |
| 90 | +===== |
| 91 | + |
| 92 | +See the `online documentation <https://importlib_metadata.readthedocs.io/>`_ |
| 93 | +for usage details. |
| 94 | + |
| 95 | +`Finder authors |
| 96 | +<https://docs.python.org/3/reference/import.html#finders-and-loaders>`_ can |
| 97 | +also add support for custom package installers. See the above documentation |
| 98 | +for details. |
| 99 | + |
| 100 | + |
| 101 | +Caveats |
| 102 | +======= |
| 103 | + |
| 104 | +This project primarily supports third-party packages installed by PyPA |
| 105 | +tools (or other conforming packages). It does not support: |
| 106 | + |
| 107 | +- Packages in the stdlib. |
| 108 | +- Packages installed without metadata. |
| 109 | + |
| 110 | +Project details |
| 111 | +=============== |
| 112 | + |
| 113 | + * Project home: https://github.com/python/importlib_metadata |
| 114 | + * Report bugs at: https://github.com/python/importlib_metadata/issues |
| 115 | + * Code hosting: https://github.com/python/importlib_metadata |
| 116 | + * Documentation: https://importlib_metadata.readthedocs.io/ |
| 117 | + |
| 118 | + |
0 commit comments