m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
3.6 KiB

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