METADATA 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. Metadata-Version: 2.1
  2. Name: zipp
  3. Version: 3.21.0
  4. Summary: Backport of pathlib-compatible object wrapper for zip files
  5. Author-email: "Jason R. Coombs" <jaraco@jaraco.com>
  6. Project-URL: Source, https://github.com/jaraco/zipp
  7. Classifier: Development Status :: 5 - Production/Stable
  8. Classifier: Intended Audience :: Developers
  9. Classifier: License :: OSI Approved :: MIT License
  10. Classifier: Programming Language :: Python :: 3
  11. Classifier: Programming Language :: Python :: 3 :: Only
  12. Requires-Python: >=3.9
  13. Description-Content-Type: text/x-rst
  14. License-File: LICENSE
  15. Provides-Extra: check
  16. Requires-Dist: pytest-checkdocs >=2.4 ; extra == 'check'
  17. Requires-Dist: pytest-ruff >=0.2.1 ; (sys_platform != "cygwin") and extra == 'check'
  18. Provides-Extra: cover
  19. Requires-Dist: pytest-cov ; extra == 'cover'
  20. Provides-Extra: doc
  21. Requires-Dist: sphinx >=3.5 ; extra == 'doc'
  22. Requires-Dist: jaraco.packaging >=9.3 ; extra == 'doc'
  23. Requires-Dist: rst.linker >=1.9 ; extra == 'doc'
  24. Requires-Dist: furo ; extra == 'doc'
  25. Requires-Dist: sphinx-lint ; extra == 'doc'
  26. Requires-Dist: jaraco.tidelift >=1.4 ; extra == 'doc'
  27. Provides-Extra: enabler
  28. Requires-Dist: pytest-enabler >=2.2 ; extra == 'enabler'
  29. Provides-Extra: test
  30. Requires-Dist: pytest !=8.1.*,>=6 ; extra == 'test'
  31. Requires-Dist: jaraco.itertools ; extra == 'test'
  32. Requires-Dist: jaraco.functools ; extra == 'test'
  33. Requires-Dist: more-itertools ; extra == 'test'
  34. Requires-Dist: big-O ; extra == 'test'
  35. Requires-Dist: pytest-ignore-flaky ; extra == 'test'
  36. Requires-Dist: jaraco.test ; extra == 'test'
  37. Requires-Dist: importlib-resources ; (python_version < "3.9") and extra == 'test'
  38. Provides-Extra: type
  39. Requires-Dist: pytest-mypy ; extra == 'type'
  40. .. image:: https://img.shields.io/pypi/v/zipp.svg
  41. :target: https://pypi.org/project/zipp
  42. .. image:: https://img.shields.io/pypi/pyversions/zipp.svg
  43. .. image:: https://github.com/jaraco/zipp/actions/workflows/main.yml/badge.svg
  44. :target: https://github.com/jaraco/zipp/actions?query=workflow%3A%22tests%22
  45. :alt: tests
  46. .. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json
  47. :target: https://github.com/astral-sh/ruff
  48. :alt: Ruff
  49. .. image:: https://readthedocs.org/projects/zipp/badge/?version=latest
  50. .. :target: https://zipp.readthedocs.io/en/latest/?badge=latest
  51. .. image:: https://img.shields.io/badge/skeleton-2024-informational
  52. :target: https://blog.jaraco.com/skeleton
  53. .. image:: https://tidelift.com/badges/package/pypi/zipp
  54. :target: https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=readme
  55. A pathlib-compatible Zipfile object wrapper. Official backport of the standard library
  56. `Path object <https://docs.python.org/3.8/library/zipfile.html#path-objects>`_.
  57. Compatibility
  58. =============
  59. New features are introduced in this third-party library and later merged
  60. into CPython. The following table indicates which versions of this library
  61. were contributed to different versions in the standard library:
  62. .. list-table::
  63. :header-rows: 1
  64. * - zipp
  65. - stdlib
  66. * - 3.18
  67. - 3.13
  68. * - 3.16
  69. - 3.12
  70. * - 3.5
  71. - 3.11
  72. * - 3.2
  73. - 3.10
  74. * - 3.3 ??
  75. - 3.9
  76. * - 1.0
  77. - 3.8
  78. Usage
  79. =====
  80. Use ``zipp.Path`` in place of ``zipfile.Path`` on any Python.
  81. For Enterprise
  82. ==============
  83. Available as part of the Tidelift Subscription.
  84. This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.
  85. `Learn more <https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=referral&utm_campaign=github>`_.