METADATA 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. Metadata-Version: 2.1
  2. Name: zipp
  3. Version: 3.8.0
  4. Summary: Backport of pathlib-compatible object wrapper for zip files
  5. Home-page: https://github.com/jaraco/zipp
  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 :: MIT License
  13. Classifier: Programming Language :: Python :: 3
  14. Classifier: Programming Language :: Python :: 3 :: Only
  15. Requires-Python: >=3.7
  16. License-File: LICENSE
  17. Provides-Extra: docs
  18. Requires-Dist: sphinx ; extra == 'docs'
  19. Requires-Dist: jaraco.packaging (>=9) ; extra == 'docs'
  20. Requires-Dist: rst.linker (>=1.9) ; extra == 'docs'
  21. Provides-Extra: testing
  22. Requires-Dist: pytest (>=6) ; extra == 'testing'
  23. Requires-Dist: pytest-checkdocs (>=2.4) ; extra == 'testing'
  24. Requires-Dist: pytest-flake8 ; extra == 'testing'
  25. Requires-Dist: pytest-cov ; extra == 'testing'
  26. Requires-Dist: pytest-enabler (>=1.0.1) ; extra == 'testing'
  27. Requires-Dist: jaraco.itertools ; extra == 'testing'
  28. Requires-Dist: func-timeout ; extra == 'testing'
  29. Requires-Dist: pytest-black (>=0.3.7) ; (platform_python_implementation != "PyPy") and extra == 'testing'
  30. Requires-Dist: pytest-mypy (>=0.9.1) ; (platform_python_implementation != "PyPy") and extra == 'testing'
  31. .. image:: https://img.shields.io/pypi/v/zipp.svg
  32. :target: `PyPI link`_
  33. .. image:: https://img.shields.io/pypi/pyversions/zipp.svg
  34. :target: `PyPI link`_
  35. .. _PyPI link: https://pypi.org/project/zipp
  36. .. image:: https://github.com/jaraco/zipp/workflows/tests/badge.svg
  37. :target: https://github.com/jaraco/zipp/actions?query=workflow%3A%22tests%22
  38. :alt: tests
  39. .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
  40. :target: https://github.com/psf/black
  41. :alt: Code style: Black
  42. .. .. image:: https://readthedocs.org/projects/skeleton/badge/?version=latest
  43. .. :target: https://skeleton.readthedocs.io/en/latest/?badge=latest
  44. .. image:: https://img.shields.io/badge/skeleton-2022-informational
  45. :target: https://blog.jaraco.com/skeleton
  46. A pathlib-compatible Zipfile object wrapper. Official backport of the standard library
  47. `Path object <https://docs.python.org/3.8/library/zipfile.html#path-objects>`_.
  48. Compatibility
  49. =============
  50. New features are introduced in this third-party library and later merged
  51. into CPython. The following table indicates which versions of this library
  52. were contributed to different versions in the standard library:
  53. .. list-table::
  54. :header-rows: 1
  55. * - zipp
  56. - stdlib
  57. * - 3.5
  58. - 3.11
  59. * - 3.3
  60. - 3.9
  61. * - 1.0
  62. - 3.8
  63. Usage
  64. =====
  65. Use ``zipp.Path`` in place of ``zipfile.Path`` on any Python.