METADATA 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. Metadata-Version: 2.2
  2. Name: eth_abi
  3. Version: 5.2.0
  4. Summary: eth_abi: Python utilities for working with Ethereum ABI definitions, especially encoding and decoding
  5. Home-page: https://github.com/ethereum/eth-abi
  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: eth-typing>=3.0.0
  26. Requires-Dist: parsimonious<0.11.0,>=0.10.0
  27. Provides-Extra: dev
  28. Requires-Dist: build>=0.9.0; extra == "dev"
  29. Requires-Dist: bump_my_version>=0.19.0; extra == "dev"
  30. Requires-Dist: ipython; extra == "dev"
  31. Requires-Dist: mypy==1.10.0; extra == "dev"
  32. Requires-Dist: pre-commit>=3.4.0; extra == "dev"
  33. Requires-Dist: tox>=4.0.0; extra == "dev"
  34. Requires-Dist: twine; extra == "dev"
  35. Requires-Dist: wheel; extra == "dev"
  36. Requires-Dist: sphinx>=6.0.0; extra == "dev"
  37. Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
  38. Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
  39. Requires-Dist: towncrier<25,>=24; extra == "dev"
  40. Requires-Dist: pytest>=7.0.0; extra == "dev"
  41. Requires-Dist: pytest-timeout>=2.0.0; extra == "dev"
  42. Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
  43. Requires-Dist: pytest-pythonpath>=0.7.1; extra == "dev"
  44. Requires-Dist: eth-hash[pycryptodome]; extra == "dev"
  45. Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "dev"
  46. Provides-Extra: docs
  47. Requires-Dist: sphinx>=6.0.0; extra == "docs"
  48. Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
  49. Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
  50. Requires-Dist: towncrier<25,>=24; extra == "docs"
  51. Provides-Extra: test
  52. Requires-Dist: pytest>=7.0.0; extra == "test"
  53. Requires-Dist: pytest-timeout>=2.0.0; extra == "test"
  54. Requires-Dist: pytest-xdist>=2.4.0; extra == "test"
  55. Requires-Dist: pytest-pythonpath>=0.7.1; extra == "test"
  56. Requires-Dist: eth-hash[pycryptodome]; extra == "test"
  57. Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "test"
  58. Provides-Extra: tools
  59. Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "tools"
  60. Dynamic: author
  61. Dynamic: author-email
  62. Dynamic: classifier
  63. Dynamic: description
  64. Dynamic: description-content-type
  65. Dynamic: home-page
  66. Dynamic: keywords
  67. Dynamic: license
  68. Dynamic: provides-extra
  69. Dynamic: requires-dist
  70. Dynamic: requires-python
  71. Dynamic: summary
  72. # Ethereum Contract Interface (ABI) Utility
  73. [![Join the conversation on Discord](https://img.shields.io/discord/809793915578089484?color=blue&label=chat&logo=discord&logoColor=white)](https://discord.gg/GHryRvPB84)
  74. [![Build Status](https://circleci.com/gh/ethereum/eth-abi.svg?style=shield)](https://circleci.com/gh/ethereum/eth-abi)
  75. [![PyPI version](https://badge.fury.io/py/eth-abi.svg)](https://badge.fury.io/py/eth-abi)
  76. [![Python versions](https://img.shields.io/pypi/pyversions/eth-abi.svg)](https://pypi.python.org/pypi/eth-abi)
  77. [![Docs build](https://readthedocs.org/projects/eth-abi/badge/?version=latest)](https://eth-abi.readthedocs.io/en/latest/?badge=latest)
  78. Python utilities for working with Ethereum ABI definitions, especially encoding and decoding
  79. Read the [documentation](https://eth-abi.readthedocs.io/).
  80. View the [change log](https://eth-abi.readthedocs.io/en/latest/release_notes.html).
  81. ## Installation
  82. ```sh
  83. python -m pip install eth-abi
  84. ```