python-trezor/setup.py

40 lines
1.3 KiB
Python
Raw Normal View History

2014-07-26 03:22:32 -07:00
#!/usr/bin/env python
from setuptools import setup
2014-02-03 13:24:54 -08:00
setup(
2014-07-26 03:22:32 -07:00
name='trezor',
2016-09-28 05:38:08 -07:00
version='0.7.4',
2014-02-03 13:24:54 -08:00
author='Bitcoin TREZOR',
author_email='info@bitcointrezor.com',
2014-07-26 03:22:32 -07:00
description='Python library for communicating with TREZOR Bitcoin Hardware Wallet',
url='https://github.com/trezor/python-trezor',
2014-07-21 09:53:08 -07: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 09:20:11 -08:00
'trezorlib.transport_bridge',
2016-09-27 13:39:31 -07:00
'trezorlib.transport_hid',
2014-07-21 09:53:08 -07:00
'trezorlib.transport_pipe',
2016-09-27 13:39:31 -07:00
'trezorlib.transport_udp',
2014-07-21 09:53:08 -07:00
'trezorlib.tx_api',
'trezorlib.types_pb2',
],
scripts = ['trezorctl'],
2014-02-03 13:24:54 -08:00
test_suite='tests',
install_requires=['ecdsa>=0.9', 'protobuf>=2.6.1', 'mnemonic>=0.8', 'hidapi>=0.7.99', 'setuptools>=19.0'],
2014-02-03 13:24:54 -08:00
include_package_data=True,
zip_safe=False,
classifiers=[
2015-01-30 14:52:14 -08:00
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
2014-02-03 13:24:54 -08:00
'Operating System :: POSIX :: Linux',
2014-07-26 03:22:32 -07:00
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
2014-02-03 13:24:54 -08:00
],
)