METADATA 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. Metadata-Version: 2.1
  2. Name: zstandard
  3. Version: 0.19.0
  4. Summary: Zstandard bindings for Python
  5. Home-page: https://github.com/indygreg/python-zstandard
  6. Author: Gregory Szorc
  7. Author-email: gregory.szorc@gmail.com
  8. License: BSD
  9. Keywords: zstandard,zstd,compression
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Programming Language :: C
  14. Classifier: Programming Language :: Python :: 3.6
  15. Classifier: Programming Language :: Python :: 3.7
  16. Classifier: Programming Language :: Python :: 3.8
  17. Classifier: Programming Language :: Python :: 3.9
  18. Classifier: Programming Language :: Python :: 3.10
  19. Classifier: Programming Language :: Python :: 3.11
  20. Requires-Python: >=3.6
  21. License-File: LICENSE
  22. Requires-Dist: cffi (>=1.11) ; platform_python_implementation == "PyPy"
  23. Provides-Extra: cffi
  24. Requires-Dist: cffi (>=1.11) ; extra == 'cffi'
  25. ================
  26. python-zstandard
  27. ================
  28. | |ci-test| |ci-wheel| |ci-typing| |ci-sdist| |ci-anaconda| |ci-sphinx|
  29. This project provides Python bindings for interfacing with the
  30. `Zstandard <http://www.zstd.net>`_ compression library. A C extension
  31. and CFFI interface are provided.
  32. The primary goal of the project is to provide a rich interface to the
  33. underlying C API through a Pythonic interface while not sacrificing
  34. performance. This means exposing most of the features and flexibility
  35. of the C API while not sacrificing usability or safety that Python provides.
  36. The canonical home for this project is
  37. https://github.com/indygreg/python-zstandard.
  38. For usage documentation, see https://python-zstandard.readthedocs.org/.
  39. .. |ci-test| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/test.yml/badge.svg
  40. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/test.yml
  41. .. |ci-wheel| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/wheel.yml/badge.svg
  42. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/wheel.yml
  43. .. |ci-typing| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/typing.yml/badge.svg
  44. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/typing.yml
  45. .. |ci-sdist| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/sdist.yml/badge.svg
  46. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/sdist.yml
  47. .. |ci-anaconda| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/anaconda.yml/badge.svg
  48. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/anaconda.yml
  49. .. |ci-sphinx| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/sphinx.yml/badge.svg
  50. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/sphinx.yml