METADATA 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. Metadata-Version: 2.1
  2. Name: zipp
  3. Version: 3.17.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. Classifier: Development Status :: 5 - Production/Stable
  9. Classifier: Intended Audience :: Developers
  10. Classifier: License :: OSI Approved :: MIT License
  11. Classifier: Programming Language :: Python :: 3
  12. Classifier: Programming Language :: Python :: 3 :: Only
  13. Requires-Python: >=3.8
  14. License-File: LICENSE
  15. Provides-Extra: docs
  16. Requires-Dist: sphinx >=3.5 ; extra == 'docs'
  17. Requires-Dist: sphinx <7.2.5 ; extra == 'docs'
  18. Requires-Dist: jaraco.packaging >=9.3 ; extra == 'docs'
  19. Requires-Dist: rst.linker >=1.9 ; extra == 'docs'
  20. Requires-Dist: furo ; extra == 'docs'
  21. Requires-Dist: sphinx-lint ; extra == 'docs'
  22. Requires-Dist: jaraco.tidelift >=1.4 ; extra == 'docs'
  23. Provides-Extra: testing
  24. Requires-Dist: pytest >=6 ; extra == 'testing'
  25. Requires-Dist: pytest-checkdocs >=2.4 ; extra == 'testing'
  26. Requires-Dist: pytest-cov ; extra == 'testing'
  27. Requires-Dist: pytest-enabler >=2.2 ; extra == 'testing'
  28. Requires-Dist: pytest-ruff ; extra == 'testing'
  29. Requires-Dist: jaraco.itertools ; extra == 'testing'
  30. Requires-Dist: jaraco.functools ; extra == 'testing'
  31. Requires-Dist: more-itertools ; extra == 'testing'
  32. Requires-Dist: big-O ; extra == 'testing'
  33. Requires-Dist: pytest-ignore-flaky ; extra == 'testing'
  34. Requires-Dist: pytest-black >=0.3.7 ; (platform_python_implementation != "PyPy") and extra == 'testing'
  35. Requires-Dist: pytest-mypy >=0.9.1 ; (platform_python_implementation != "PyPy") and extra == 'testing'
  36. .. image:: https://img.shields.io/pypi/v/zipp.svg
  37. :target: https://pypi.org/project/zipp
  38. .. image:: https://img.shields.io/pypi/pyversions/zipp.svg
  39. .. image:: https://github.com/jaraco/zipp/workflows/tests/badge.svg
  40. :target: https://github.com/jaraco/zipp/actions?query=workflow%3A%22tests%22
  41. :alt: tests
  42. .. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json
  43. :target: https://github.com/astral-sh/ruff
  44. :alt: Ruff
  45. .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
  46. :target: https://github.com/psf/black
  47. :alt: Code style: Black
  48. .. .. image:: https://readthedocs.org/projects/PROJECT_RTD/badge/?version=latest
  49. .. :target: https://PROJECT_RTD.readthedocs.io/en/latest/?badge=latest
  50. .. image:: https://img.shields.io/badge/skeleton-2023-informational
  51. :target: https://blog.jaraco.com/skeleton
  52. .. image:: https://tidelift.com/badges/package/pypi/zipp
  53. :target: https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=readme
  54. A pathlib-compatible Zipfile object wrapper. Official backport of the standard library
  55. `Path object <https://docs.python.org/3.8/library/zipfile.html#path-objects>`_.
  56. Compatibility
  57. =============
  58. New features are introduced in this third-party library and later merged
  59. into CPython. The following table indicates which versions of this library
  60. were contributed to different versions in the standard library:
  61. .. list-table::
  62. :header-rows: 1
  63. * - zipp
  64. - stdlib
  65. * - 3.15
  66. - 3.12
  67. * - 3.5
  68. - 3.11
  69. * - 3.2
  70. - 3.10
  71. * - 3.3 ??
  72. - 3.9
  73. * - 1.0
  74. - 3.8
  75. Usage
  76. =====
  77. Use ``zipp.Path`` in place of ``zipfile.Path`` on any Python.
  78. For Enterprise
  79. ==============
  80. Available as part of the Tidelift Subscription.
  81. 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.
  82. `Learn more <https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=referral&utm_campaign=github>`_.