METADATA 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. Metadata-Version: 2.1
  2. Name: importlib-metadata
  3. Version: 0.18
  4. Summary: Read metadata from Python packages
  5. Home-page: http://importlib-metadata.readthedocs.io/
  6. Author: Barry Warsaw
  7. Author-email: barry@python.org
  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: >=2.7,!=3.0,!=3.1,!=3.2,!=3.3
  17. Requires-Dist: zipp (>=0.5)
  18. Requires-Dist: contextlib2 ; python_version < "3"
  19. Requires-Dist: configparser (>=3.5) ; python_version < "3"
  20. Requires-Dist: pathlib2 ; python_version == "3.4.*" or python_version < "3"
  21. Provides-Extra: docs
  22. Requires-Dist: sphinx ; extra == 'docs'
  23. Requires-Dist: docutils (==0.12) ; extra == 'docs'
  24. Requires-Dist: rst.linker ; extra == 'docs'
  25. =========================
  26. ``importlib_metadata``
  27. =========================
  28. ``importlib_metadata`` is a library to access the metadata for a Python
  29. package. It is intended to be ported to Python 3.8.
  30. Usage
  31. =====
  32. See the `online documentation <https://importlib_metadata.readthedocs.io/>`_
  33. for usage details.
  34. `Finder authors
  35. <https://docs.python.org/3/reference/import.html#finders-and-loaders>`_ can
  36. also add support for custom package installers. See the above documentation
  37. for details.
  38. Caveats
  39. =======
  40. This project primarily supports third-party packages installed by PyPA
  41. tools (or other conforming packages). It does not support:
  42. - Packages in the stdlib.
  43. - Packages installed without metadata.
  44. Project details
  45. ===============
  46. * Project home: https://gitlab.com/python-devs/importlib_metadata
  47. * Report bugs at: https://gitlab.com/python-devs/importlib_metadata/issues
  48. * Code hosting: https://gitlab.com/python-devs/importlib_metadata.git
  49. * Documentation: http://importlib_metadata.readthedocs.io/