-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
executable file
·35 lines (34 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='keepkey',
version='7.0.3',
author='TREZOR and KeepKey',
author_email='[email protected]',
description='Python library for communicating with KeepKey Hardware Wallet',
url='https://github.com/keepkey/python-keepkey',
packages=find_packages(exclude=['tests']),
scripts = ['keepkeyctl'],
test_suite='tests/**/test_*.py',
install_requires=[
'ecdsa>=0.9',
'protobuf>=3.0.0',
'mnemonic>=0.8',
'hidapi>=0.7.99.post15',
'libusb1>=1.6'
],
extras_require={
"ethereum": ["rlp>=0.4.4", "ethjsonrpc>=0.3.0"],
},
tests_require=[
'semver==2.9.0'
],
include_package_data=True,
zip_safe=False,
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
)