blob: 5e9b31496277dacdf9e9c414c4bac0dc6051b9d6 (
plain) (
tree)
|
|
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='[email protected]',
license='MIT',
scripts=['ethy.py'],
install_requires=[
'pycrypto',
'pysha3',
'ecdsa',
'base58'
])
|