METADATA 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. Metadata-Version: 2.4
  2. Name: zstandard
  3. Version: 0.25.0
  4. Summary: Zstandard bindings for Python
  5. Author-email: Gregory Szorc <gregory.szorc@gmail.com>
  6. License-Expression: BSD-3-Clause
  7. Project-URL: Homepage, https://github.com/indygreg/python-zstandard
  8. Project-URL: Documentation, https://python-zstandard.readthedocs.io/en/latest/
  9. Keywords: zstandard,zstd,compression
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: Programming Language :: C
  13. Classifier: Programming Language :: Python :: 3.9
  14. Classifier: Programming Language :: Python :: 3.10
  15. Classifier: Programming Language :: Python :: 3.11
  16. Classifier: Programming Language :: Python :: 3.12
  17. Classifier: Programming Language :: Python :: 3.13
  18. Classifier: Programming Language :: Python :: 3.14
  19. Classifier: Programming Language :: Python :: Free Threading :: 1 - Unstable
  20. Requires-Python: >=3.9
  21. Description-Content-Type: text/x-rst
  22. License-File: LICENSE
  23. Provides-Extra: cffi
  24. Requires-Dist: cffi~=1.17; (platform_python_implementation != "PyPy" and python_version < "3.14") and extra == "cffi"
  25. Requires-Dist: cffi>=2.0.0b; (platform_python_implementation != "PyPy" and python_version >= "3.14") and extra == "cffi"
  26. Dynamic: license-file
  27. ================
  28. python-zstandard
  29. ================
  30. | |ci-test| |ci-wheel| |ci-typing| |ci-sdist| |ci-anaconda| |ci-sphinx|
  31. This project provides Python bindings for interfacing with the
  32. `Zstandard <http://www.zstd.net>`_ compression library. A C extension
  33. and CFFI interface are provided.
  34. The primary goal of the project is to provide a rich interface to the
  35. underlying C API through a Pythonic interface while not sacrificing
  36. performance. This means exposing most of the features and flexibility
  37. of the C API while not sacrificing usability or safety that Python provides.
  38. The canonical home for this project is
  39. https://github.com/indygreg/python-zstandard.
  40. For usage documentation, see https://python-zstandard.readthedocs.org/.
  41. .. |ci-test| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/test.yml/badge.svg
  42. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/test.yml
  43. .. |ci-wheel| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/wheel.yml/badge.svg
  44. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/wheel.yml
  45. .. |ci-typing| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/typing.yml/badge.svg
  46. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/typing.yml
  47. .. |ci-sdist| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/sdist.yml/badge.svg
  48. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/sdist.yml
  49. .. |ci-anaconda| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/anaconda.yml/badge.svg
  50. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/anaconda.yml
  51. .. |ci-sphinx| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/sphinx.yml/badge.svg
  52. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/sphinx.yml