aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 69a44bc313f1dc4db27c1a68b14885c168b33f60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup

setup(name='ethy.py',
      version='0.1',
      description='Decryption/verification/generation of Ethereum 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'
          ])