{ "info": { "author": "The Ethereum Foundation", "author_email": "snakecharmers@ethereum.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "# py-hdwallet\n\n[![Join the chat at https://gitter.im/ethereum/py-hdwallet](https://badges.gitter.im/ethereum/py-hdwallet.svg)](https://gitter.im/ethereum/py-hdwallet?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![Build Status](https://circleci.com/gh/ethereum/py-hdwallet.svg?style=shield)](https://circleci.com/gh/ethereum/py-hdwallet)\n[![PyPI version](https://badge.fury.io/py/py-hdwallet.svg)](https://badge.fury.io/py/py-hdwallet)\n[![Python versions](https://img.shields.io/pypi/pyversions/py-hdwallet.svg)](https://pypi.python.org/pypi/py-hdwallet)\n[![Docs build](https://readthedocs.org/projects/py-hdwallet/badge/?version=latest)](http://py-hdwallet.readthedocs.io/en/latest/?badge=latest)\n\nHD wallet generator.\n\n***WARNING: This package has not been peer reviewed or audited. Use at your own risk!***\n\nRead more in the [documentation on ReadTheDocs](https://py-hdwallet.readthedocs.io/). [View the change log](https://py-hdwallet.readthedocs.io/en/latest/releases.html).\n\n## Quickstart\n\n```sh\npip install py-hdwallet\n```\n\n## Developer Setup\n\nIf you would like to hack on py-hdwallet, please check out the [Snake Charmers\nTactical Manual](https://github.com/ethereum/snake-charmers-tactical-manual)\nfor information on how we do:\n\n- Testing\n- Pull Requests\n- Code Style\n- Documentation\n\n### Development Environment Setup\n\nYou can set up your dev environment with:\n\n```sh\ngit clone git@github.com:ethereum/py-hdwallet.git\ncd py-hdwallet\nvirtualenv -p python3 venv\n. venv/bin/activate\npip install -e .[dev]\n```\n\n### Testing Setup\n\nDuring development, you might like to have tests run on every file save.\n\nShow flake8 errors on file change:\n\n```sh\n# Test flake8\nwhen-changed -v -s -r -1 hdwallet/ tests/ -c \"clear; flake8 hdwallet tests && echo 'flake8 success' || echo 'error'\"\n```\n\nRun multi-process tests in one command, but without color:\n\n```sh\n# in the project root:\npytest --numprocesses=4 --looponfail --maxfail=1\n# the same thing, succinctly:\npytest -n 4 -f --maxfail=1\n```\n\nRun in one thread, with color and desktop notifications:\n\n```sh\ncd venv\nptw --onfail \"notify-send -t 5000 'Test failure \u26a0\u26a0\u26a0\u26a0\u26a0' 'python 3 test on py-hdwallet failed'\" ../tests ../hdwallet\n```\n\n### Release setup\n\nFor Debian-like systems:\n```\napt install pandoc\n```\n\nTo release a new version:\n\n```sh\nmake release bump=$$VERSION_PART_TO_BUMP$$\n```\n\n#### How to bumpversion\n\nThe version format for this repo is `{major}.{minor}.{patch}` for stable, and\n`{major}.{minor}.{patch}-{stage}.{devnum}` for unstable (`stage` can be alpha or beta).\n\nTo issue the next version in line, specify which part to bump,\nlike `make release bump=minor` or `make release bump=devnum`. This is typically done from the\nmaster branch, except when releasing a beta (in which case the beta is released from master,\nand the previous stable branch is released from said branch). To include changes made with each\nrelease, update \"docs/releases.rst\" with the changes, and apply commit directly to master \nbefore release.\n\nIf you are in a beta version, `make release bump=stage` will switch to a stable.\n\nTo issue an unstable version when the current version is stable, specify the\nnew version explicitly, like `make release bump=\"--new-version 4.0.0-alpha.1 devnum\"`\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ethereum/py-hdwallet", "keywords": "ethereum", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "py-hdwallet", "package_url": "https://pypi.org/project/py-hdwallet/", "platform": "", "project_url": "https://pypi.org/project/py-hdwallet/", "project_urls": { "Homepage": "https://github.com/ethereum/py-hdwallet" }, "release_url": "https://pypi.org/project/py-hdwallet/0.1.0a1/", "requires_dist": [ "ecdsa (<0.14.0,>=0.13.2)", "base58 (<1.1.0,>=1.0.3)", "bumpversion (<1,>=0.5.3) ; extra == 'dev'", "pytest-watch (<5,>=4.1.0) ; extra == 'dev'", "wheel ; extra == 'dev'", "twine ; extra == 'dev'", "ipython ; extra == 'dev'", "pytest (==5.0.1) ; extra == 'dev'", "pytest-xdist ; extra == 'dev'", "tox (<3,>=2.9.1) ; extra == 'dev'", "flake8 (==3.4.1) ; extra == 'dev'", "isort (<5,>=4.2.15) ; extra == 'dev'", "mypy (==0.701) ; extra == 'dev'", "pydocstyle (<4,>=3.0.0) ; extra == 'dev'", "Sphinx (<2,>=1.6.5) ; extra == 'dev'", "sphinx-rtd-theme (>=0.1.9) ; extra == 'dev'", "Sphinx (<2,>=1.6.5) ; extra == 'doc'", "sphinx-rtd-theme (>=0.1.9) ; extra == 'doc'", "flake8 (==3.4.1) ; extra == 'lint'", "isort (<5,>=4.2.15) ; extra == 'lint'", "mypy (==0.701) ; extra == 'lint'", "pydocstyle (<4,>=3.0.0) ; extra == 'lint'", "pytest (==5.0.1) ; extra == 'test'", "pytest-xdist ; extra == 'test'", "tox (<3,>=2.9.1) ; extra == 'test'" ], "requires_python": ">=3.6, <4", "summary": "py-hdwallet: HD wallet generator.", "version": "0.1.0a1" }, "last_serial": 5592251, "releases": { "0.1.0a1": [ { "comment_text": "", "digests": { "md5": "8f35f9a949a02cd771c5b57ca471e0b5", "sha256": "a2350ff4c611b95ce3e4c1758110858cd4f5a85502e0451541aefa954ba61590" }, "downloads": -1, "filename": "py_hdwallet-0.1.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "8f35f9a949a02cd771c5b57ca471e0b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6, <4", "size": 10339, "upload_time": "2019-07-27T08:13:35", "url": "https://files.pythonhosted.org/packages/06/24/8795b09c6448966e96eec0a80ae664776dac4c032f4301de13a47f893328/py_hdwallet-0.1.0a1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fac88037a5a6980c7a76f58d4f45169", "sha256": "d4b07032ed71d8b439d4aa373fecef15bc2edb2fb6aa6c8ecb1c6b897f57367b" }, "downloads": -1, "filename": "py-hdwallet-0.1.0a1.tar.gz", "has_sig": false, "md5_digest": "4fac88037a5a6980c7a76f58d4f45169", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6, <4", "size": 10562, "upload_time": "2019-07-27T08:13:37", "url": "https://files.pythonhosted.org/packages/fc/4c/12a0a01a6ce512204163218562b5aafdfe82fb99842eb0905e54ab3808f5/py-hdwallet-0.1.0a1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8f35f9a949a02cd771c5b57ca471e0b5", "sha256": "a2350ff4c611b95ce3e4c1758110858cd4f5a85502e0451541aefa954ba61590" }, "downloads": -1, "filename": "py_hdwallet-0.1.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "8f35f9a949a02cd771c5b57ca471e0b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6, <4", "size": 10339, "upload_time": "2019-07-27T08:13:35", "url": "https://files.pythonhosted.org/packages/06/24/8795b09c6448966e96eec0a80ae664776dac4c032f4301de13a47f893328/py_hdwallet-0.1.0a1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fac88037a5a6980c7a76f58d4f45169", "sha256": "d4b07032ed71d8b439d4aa373fecef15bc2edb2fb6aa6c8ecb1c6b897f57367b" }, "downloads": -1, "filename": "py-hdwallet-0.1.0a1.tar.gz", "has_sig": false, "md5_digest": "4fac88037a5a6980c7a76f58d4f45169", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6, <4", "size": 10562, "upload_time": "2019-07-27T08:13:37", "url": "https://files.pythonhosted.org/packages/fc/4c/12a0a01a6ce512204163218562b5aafdfe82fb99842eb0905e54ab3808f5/py-hdwallet-0.1.0a1.tar.gz" } ] }