METADATA 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. Metadata-Version: 2.2
  2. Name: eth-rlp
  3. Version: 2.2.0
  4. Summary: eth-rlp: RLP definitions for common Ethereum objects in Python
  5. Home-page: https://github.com/ethereum/eth-rlp
  6. Author: The Ethereum Foundation
  7. Author-email: snakecharmers@ethereum.org
  8. License: MIT
  9. Keywords: ethereum
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: MIT License
  13. Classifier: Natural Language :: English
  14. Classifier: Programming Language :: Python :: 3
  15. Classifier: Programming Language :: Python :: 3.8
  16. Classifier: Programming Language :: Python :: 3.9
  17. Classifier: Programming Language :: Python :: 3.10
  18. Classifier: Programming Language :: Python :: 3.11
  19. Classifier: Programming Language :: Python :: 3.12
  20. Classifier: Programming Language :: Python :: 3.13
  21. Requires-Python: >=3.8, <4
  22. Description-Content-Type: text/markdown
  23. License-File: LICENSE
  24. Requires-Dist: eth-utils>=2.0.0
  25. Requires-Dist: hexbytes>=1.2.0
  26. Requires-Dist: rlp>=0.6.0
  27. Requires-Dist: typing_extensions>=4.0.1; python_version <= "3.10"
  28. Provides-Extra: dev
  29. Requires-Dist: build>=0.9.0; extra == "dev"
  30. Requires-Dist: bump_my_version>=0.19.0; extra == "dev"
  31. Requires-Dist: ipython; extra == "dev"
  32. Requires-Dist: mypy==1.10.0; extra == "dev"
  33. Requires-Dist: pre-commit>=3.4.0; extra == "dev"
  34. Requires-Dist: tox>=4.0.0; extra == "dev"
  35. Requires-Dist: twine; extra == "dev"
  36. Requires-Dist: wheel; extra == "dev"
  37. Requires-Dist: sphinx>=6.0.0; extra == "dev"
  38. Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
  39. Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
  40. Requires-Dist: towncrier<25,>=24; extra == "dev"
  41. Requires-Dist: eth-hash[pycryptodome]; extra == "dev"
  42. Requires-Dist: pytest>=7.0.0; extra == "dev"
  43. Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
  44. Provides-Extra: docs
  45. Requires-Dist: sphinx>=6.0.0; extra == "docs"
  46. Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
  47. Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
  48. Requires-Dist: towncrier<25,>=24; extra == "docs"
  49. Provides-Extra: test
  50. Requires-Dist: eth-hash[pycryptodome]; extra == "test"
  51. Requires-Dist: pytest>=7.0.0; extra == "test"
  52. Requires-Dist: pytest-xdist>=2.4.0; extra == "test"
  53. Dynamic: author
  54. Dynamic: author-email
  55. Dynamic: classifier
  56. Dynamic: description
  57. Dynamic: description-content-type
  58. Dynamic: home-page
  59. Dynamic: keywords
  60. Dynamic: license
  61. Dynamic: provides-extra
  62. Dynamic: requires-dist
  63. Dynamic: requires-python
  64. Dynamic: summary
  65. # eth-rlp
  66. [![Join the conversation on Discord](https://img.shields.io/discord/809793915578089484?color=blue&label=chat&logo=discord&logoColor=white)](https://discord.gg/GHryRvPB84)
  67. [![Build Status](https://circleci.com/gh/ethereum/eth-rlp.svg?style=shield)](https://circleci.com/gh/ethereum/eth-rlp)
  68. [![PyPI version](https://badge.fury.io/py/eth-rlp.svg)](https://badge.fury.io/py/eth-rlp)
  69. [![Python versions](https://img.shields.io/pypi/pyversions/eth-rlp.svg)](https://pypi.python.org/pypi/eth-rlp)
  70. [![Docs build](https://readthedocs.org/projects/eth-rlp/badge/?version=latest)](https://eth-rlp.readthedocs.io/en/latest/?badge=latest)
  71. RLP definitions for common Ethereum objects in Python
  72. Read the [documentation](https://eth-rlp.readthedocs.io/).
  73. View the [change log](https://eth-rlp.readthedocs.io/en/latest/release_notes.html).
  74. ## Installation
  75. ```sh
  76. python -m pip install eth-rlp
  77. ```