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


                            

                                                                               







                                                  

                  
            
from setuptools import setup

setup(name='ethy.py',
      version='0.2',
      description='Decryption/verification/generation of Ethereum/BTC wallets',
      url='http://github.com/Determinant/ethy.py',
      author='Ted Yin',
      author_email='tederminant@gmail.com',
      license='MIT',
      scripts=['ethy.py'],
      install_requires=[
          'pycrypto',
          'pysha3',
          'ecdsa',
          'base58'
          ])