forked from jonashaag/bip32
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 645 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='bip32',
version='1.0',
author='Jonas Haag',
author_email='jonas@lophus.org',
url='https://github.com/jonashaag/bip32',
license='ISC',
description="Python BIP32 implementation",
py_modules=['bip32'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=['mnemonic', 'bip32utils', 'pysha3'],
)