From 9712b1ce01ed249e76e913d9743bc50e1f7a6dcb Mon Sep 17 00:00:00 2001 From: halfss Date: Fri, 15 Dec 2017 20:13:14 +0800 Subject: [PATCH] add depends add pycryptodome or will get this Traceback (most recent call last): File "create_btc.py", line 1, in from pywallet import wallet File "/usr/lib/python3.4/site-packages/pywallet-0.0.5-py3.4.egg/pywallet/wallet.py", line 5, in from .utils import ( File "/usr/lib/python3.4/site-packages/pywallet-0.0.5-py3.4.egg/pywallet/utils/__init__.py", line 5, in from .ethereum import ( File "/usr/lib/python3.4/site-packages/pywallet-0.0.5-py3.4.egg/pywallet/utils/ethereum.py", line 30, in from Crypto.Hash import keccak ImportError: No module named 'Crypto' --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 8b5f1e4..c21bbc2 100644 --- a/setup.py +++ b/setup.py @@ -55,6 +55,7 @@ setup( 'ecdsa==0.11', 'six>=1.8.0', 'two1>=3.10.8', + 'pycryptodome==3.4.7', 'rlp>=0.6.0' ] )