1Metadata-Version: 2.1
2Name: importlib-resources
3Version: 3.3.0
4Summary: Read resources from Python packages
5Home-page: https://github.com/python/importlib_resources
6Author: Barry Warsaw
7Author-email: barry@python.org
8License: UNKNOWN
9Project-URL: Documentation, https://importlib-resources.readthedocs.io/
10Platform: UNKNOWN
11Classifier: Development Status :: 5 - Production/Stable
12Classifier: Intended Audience :: Developers
13Classifier: License :: OSI Approved :: Apache Software License
14Classifier: Topic :: Software Development :: Libraries
15Classifier: Programming Language :: Python :: 2.7
16Classifier: Programming Language :: Python :: 3
17Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7
18Requires-Dist: pathlib2 ; python_version < "3"
19Requires-Dist: contextlib2 ; python_version < "3"
20Requires-Dist: singledispatch ; python_version < "3.4"
21Requires-Dist: typing ; python_version < "3.5"
22Requires-Dist: zipp (>=0.4) ; python_version < "3.8"
23Provides-Extra: docs
24Requires-Dist: sphinx ; extra == 'docs'
25Requires-Dist: rst.linker ; extra == 'docs'
26Requires-Dist: jaraco.packaging ; extra == 'docs'
27
28``importlib_resources`` is a backport of Python standard library
29`importlib.resources
30<https://docs.python.org/3.9/library/importlib.html#module-importlib.resources>`_
31module for Python 2.7, and 3.4 through 3.8.  Users of Python 3.9 and beyond
32should use the standard library module, since for these versions,
33``importlib_resources`` just delegates to that module.
34
35The key goal of this module is to replace parts of `pkg_resources
36<https://setuptools.readthedocs.io/en/latest/pkg_resources.html>`_ with a
37solution in Python's stdlib that relies on well-defined APIs.  This makes
38reading resources included in packages easier, with more stable and consistent
39semantics.
40
41
42