2014-07-26 10:22:32 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
2014-02-03 21:24:54 +00:00
|
|
|
|
2017-06-14 21:06:54 +00:00
|
|
|
install_requires = [
|
|
|
|
'ecdsa>=0.9',
|
2017-06-18 21:19:15 +00:00
|
|
|
'protobuf>=3.1.0',
|
2017-06-14 21:06:54 +00:00
|
|
|
'mnemonic>=0.17',
|
|
|
|
'setuptools>=19.0',
|
|
|
|
'requests>=2.4.0',
|
|
|
|
]
|
2016-10-03 18:37:48 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
if '--disable-hidapi' in sys.argv:
|
|
|
|
sys.argv.remove('--disable-hidapi')
|
|
|
|
else:
|
2017-03-06 11:02:49 +00:00
|
|
|
install_requires.append('hidapi>=0.7.99.post20')
|
2016-10-03 18:37:48 +00:00
|
|
|
|
2014-02-03 21:24:54 +00:00
|
|
|
setup(
|
2014-07-26 10:22:32 +00:00
|
|
|
name='trezor',
|
2017-06-18 22:00:50 +00:00
|
|
|
version='0.7.15',
|
2016-11-27 12:48:45 +00:00
|
|
|
author='TREZOR',
|
|
|
|
author_email='info@trezor.io',
|
|
|
|
description='Python library for communicating with TREZOR Hardware Wallet',
|
2014-07-26 10:22:32 +00:00
|
|
|
url='https://github.com/trezor/python-trezor',
|
2014-07-21 16:53:08 +00:00
|
|
|
py_modules=[
|
|
|
|
'trezorlib.ckd_public',
|
|
|
|
'trezorlib.client',
|
|
|
|
'trezorlib.debuglink',
|
|
|
|
'trezorlib.mapping',
|
|
|
|
'trezorlib.messages_pb2',
|
|
|
|
'trezorlib.protobuf_json',
|
|
|
|
'trezorlib.qt.pinmatrix',
|
|
|
|
'trezorlib.tools',
|
|
|
|
'trezorlib.transport',
|
2015-12-21 17:20:11 +00:00
|
|
|
'trezorlib.transport_bridge',
|
2016-09-27 20:39:31 +00:00
|
|
|
'trezorlib.transport_hid',
|
2014-07-21 16:53:08 +00:00
|
|
|
'trezorlib.transport_pipe',
|
2016-09-27 20:39:31 +00:00
|
|
|
'trezorlib.transport_udp',
|
2014-07-21 16:53:08 +00:00
|
|
|
'trezorlib.tx_api',
|
|
|
|
'trezorlib.types_pb2',
|
|
|
|
],
|
2017-06-23 19:31:42 +00:00
|
|
|
scripts=['trezorctl'],
|
2016-10-03 18:37:48 +00:00
|
|
|
install_requires=install_requires,
|
2014-02-03 21:24:54 +00:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
classifiers=[
|
2015-01-30 22:52:14 +00:00
|
|
|
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
|
2014-02-03 21:24:54 +00:00
|
|
|
'Operating System :: POSIX :: Linux',
|
2014-07-26 10:22:32 +00:00
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
2014-02-03 21:24:54 +00:00
|
|
|
],
|
|
|
|
)
|