METADATA 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. Metadata-Version: 2.4
  2. Name: eth-account
  3. Version: 0.13.7
  4. Summary: eth-account: Sign Ethereum transactions and messages with local private keys
  5. Home-page: https://github.com/ethereum/eth-account
  6. Author: The Ethereum Foundation
  7. Author-email: snakecharmers@ethereum.org
  8. License: MIT
  9. Keywords: ethereum
  10. Classifier: Development Status :: 3 - Alpha
  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: bitarray>=2.4.0
  25. Requires-Dist: eth-abi>=4.0.0-b.2
  26. Requires-Dist: eth-keyfile<0.9.0,>=0.7.0
  27. Requires-Dist: eth-keys>=0.4.0
  28. Requires-Dist: eth-rlp>=2.1.0
  29. Requires-Dist: eth-utils>=2.0.0
  30. Requires-Dist: hexbytes>=1.2.0
  31. Requires-Dist: rlp>=1.0.0
  32. Requires-Dist: ckzg>=2.0.0
  33. Requires-Dist: pydantic>=2.0.0
  34. Provides-Extra: dev
  35. Requires-Dist: build>=0.9.0; extra == "dev"
  36. Requires-Dist: bump_my_version>=0.19.0; extra == "dev"
  37. Requires-Dist: ipython; extra == "dev"
  38. Requires-Dist: mypy==1.10.0; extra == "dev"
  39. Requires-Dist: pre-commit>=3.4.0; extra == "dev"
  40. Requires-Dist: tox>=4.0.0; extra == "dev"
  41. Requires-Dist: twine; extra == "dev"
  42. Requires-Dist: wheel; extra == "dev"
  43. Requires-Dist: sphinx>=6.0.0; extra == "dev"
  44. Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
  45. Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
  46. Requires-Dist: towncrier<25,>=24; extra == "dev"
  47. Requires-Dist: pytest>=7.0.0; extra == "dev"
  48. Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
  49. Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "dev"
  50. Requires-Dist: coverage; extra == "dev"
  51. Provides-Extra: docs
  52. Requires-Dist: sphinx>=6.0.0; extra == "docs"
  53. Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
  54. Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
  55. Requires-Dist: towncrier<25,>=24; extra == "docs"
  56. Provides-Extra: test
  57. Requires-Dist: pytest>=7.0.0; extra == "test"
  58. Requires-Dist: pytest-xdist>=2.4.0; extra == "test"
  59. Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "test"
  60. Requires-Dist: coverage; extra == "test"
  61. Dynamic: author
  62. Dynamic: author-email
  63. Dynamic: classifier
  64. Dynamic: description
  65. Dynamic: description-content-type
  66. Dynamic: home-page
  67. Dynamic: keywords
  68. Dynamic: license
  69. Dynamic: license-file
  70. Dynamic: provides-extra
  71. Dynamic: requires-dist
  72. Dynamic: requires-python
  73. Dynamic: summary
  74. # eth-account
  75. [![Join the conversation on Discord](https://img.shields.io/discord/809793915578089484?color=blue&label=chat&logo=discord&logoColor=white)](https://discord.gg/GHryRvPB84)
  76. [![Build Status](https://circleci.com/gh/ethereum/eth-account.svg?style=shield)](https://circleci.com/gh/ethereum/eth-account)
  77. [![PyPI version](https://badge.fury.io/py/eth-account.svg)](https://badge.fury.io/py/eth-account)
  78. [![Python versions](https://img.shields.io/pypi/pyversions/eth-account.svg)](https://pypi.python.org/pypi/eth-account)
  79. [![Docs build](https://readthedocs.org/projects/eth-account/badge/?version=latest)](https://eth-account.readthedocs.io/en/latest/?badge=latest)
  80. Sign Ethereum transactions and messages with local private keys
  81. Read the [documentation](https://eth-account.readthedocs.io/).
  82. View the [change log](https://eth-account.readthedocs.io/en/latest/release_notes.html).
  83. ## Installation
  84. ```sh
  85. python -m pip install eth-account
  86. ```