aboutsummaryrefslogblamecommitdiff
path: root/setup.py
blob: f9e4b7e660c77387f37cbc5d6b71311ab9edd750 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                               
                            
                                                                      
from setuptools import setup

setup(name='keytree.py',
      version='0.2',
      description='Derive BIP32 key pairs from BIP39 mnemonic',
      url='http://github.com/Determinant/keytree.py',
      author='Ted Yin',
      author_email='[email protected]',
      license='MIT',
      scripts=['keytree.py'],
      py_modules=['bech32'],
      install_requires=['ecdsa', 'base58', 'pysha3', 'pycryptodomex'])