METADATA 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Metadata-Version: 2.1
  2. Name: importlib-metadata
  3. Version: 2.1.3
  4. Summary: Read metadata from Python packages
  5. Home-page: http://importlib-metadata.readthedocs.io/
  6. Author: Jason R. Coombs
  7. Author-email: jaraco@jaraco.com
  8. License: Apache Software License
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 3 - Alpha
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: Apache Software License
  13. Classifier: Topic :: Software Development :: Libraries
  14. Classifier: Programming Language :: Python :: 3
  15. Classifier: Programming Language :: Python :: 2
  16. Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7
  17. License-File: LICENSE
  18. Requires-Dist: pathlib2 ; python_version < "3"
  19. Requires-Dist: contextlib2 ; python_version < "3"
  20. Requires-Dist: configparser (>=3.5) ; python_version < "3"
  21. Provides-Extra: docs
  22. Requires-Dist: sphinx ; extra == 'docs'
  23. Requires-Dist: rst.linker ; extra == 'docs'
  24. Provides-Extra: testing
  25. Requires-Dist: packaging ; extra == 'testing'
  26. Requires-Dist: pep517 ; extra == 'testing'
  27. Requires-Dist: unittest2 ; (python_version < "3") and extra == 'testing'
  28. Requires-Dist: importlib-resources (>=1.3) ; (python_version < "3.9") and extra == 'testing'
  29. =========================
  30. ``importlib_metadata``
  31. =========================
  32. ``importlib_metadata`` is a library to access the metadata for a
  33. Python package.
  34. As of Python 3.8, this functionality has been added to the
  35. `Python standard library
  36. <https://docs.python.org/3/library/importlib.metadata.html>`_.
  37. This package supplies backports of that functionality including
  38. improvements added to subsequent Python versions.
  39. Usage
  40. =====
  41. See the `online documentation <https://importlib_metadata.readthedocs.io/>`_
  42. for usage details.
  43. `Finder authors
  44. <https://docs.python.org/3/reference/import.html#finders-and-loaders>`_ can
  45. also add support for custom package installers. See the above documentation
  46. for details.
  47. Caveats
  48. =======
  49. This project primarily supports third-party packages installed by PyPA
  50. tools (or other conforming packages). It does not support:
  51. - Packages in the stdlib.
  52. - Packages installed without metadata.
  53. Project details
  54. ===============
  55. * Project home: https://github.com/python/importlib_metadata
  56. * Report bugs at: https://github.com/python/importlib_metadata/issues
  57. * Code hosting: https://github.com/python/importlib_metadata
  58. * Documentation: https://importlib_metadata.readthedocs.io/