diff options
author | Determinant <[email protected]> | 2020-08-16 02:21:55 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-08-16 02:21:55 -0400 |
commit | 17390b9905330a05ff68998f690d7d7a1bcf29d8 (patch) | |
tree | ca6326f821a85b063a49293691a472cb1ba50a92 | |
parent | 513fe47978f0c6642e2bd0c397baaf3be07de86f (diff) |
...
-rw-r--r-- | README.rst | 6 | ||||
-rw-r--r-- | setup.py | 1 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,7 @@ keytree ======= -- Derive 10 keys from the given mnemonic: ``./keytree.py --end-idx 10`` -- Generate a new mnemonic and derive 10 keys from it: ``./keytree.py --end-idx 10 --gen-mnemonic`` +- CD into the cloned repo +- Install the deps: ``pip3 --user install .`` +- Derive 10 keys from the given mnemonic: ``keytree.py --end-idx 10`` +- Generate a new mnemonic and derive 10 keys from it: ``keytree.py --end-idx 10 --gen-mnemonic`` @@ -8,4 +8,5 @@ setup(name='keytree.py', author_email='[email protected]', license='MIT', scripts=['keytree.py'], + py_modules=['bech32'], install_requires=['ecdsa', 'base58', 'pysha3', 'mnemonic']) |