blob: c50a783a955eeede6732fd92ee37432b7bbe151f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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='[email protected]',
license='MIT',
scripts=['ethy.py'],
install_requires=[
'pycrypto',
'pysha3',
'ecdsa'
])
|