METADATA 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Metadata-Version: 2.4
  2. Name: ckzg
  3. Version: 2.1.5
  4. Summary: Python bindings for C-KZG-4844
  5. Home-page: https://github.com/ethereum/c-kzg-4844
  6. Author: Ethereum Foundation
  7. Author-email: security@ethereum.org
  8. License: Apache-2.0
  9. Description-Content-Type: text/markdown
  10. License-File: LICENSE
  11. Dynamic: author
  12. Dynamic: author-email
  13. Dynamic: description
  14. Dynamic: description-content-type
  15. Dynamic: home-page
  16. Dynamic: license
  17. Dynamic: license-file
  18. Dynamic: summary
  19. # Python Bindings for the C-KZG Library
  20. This directory contains Python bindings for the C-KZG-4844 library.
  21. ## Prerequisites
  22. These bindings require `python3`, `PyYAML` and `make`.
  23. ```
  24. sudo apt install python3 python3-pip
  25. python3 -m pip install build PyYAML
  26. ```
  27. ## Build & test
  28. Everything is consolidated into one command:
  29. ```
  30. make
  31. ```
  32. You should expect to see these messages at the bottom:
  33. ```
  34. python3 tests.py
  35. tests passed
  36. ```