update setup.py file

pull/1/head
Pavol Rusnak 10 years ago
parent d6dd3c1381
commit 58711df5d3

@ -1,5 +1,5 @@
trezorlib-python python-trezor
================ =============
Client side implementation for Trezor-compatible Bitcoin hardware wallets. Client side implementation for Trezor-compatible Bitcoin hardware wallets.

@ -1,14 +1,13 @@
from setuptools import setup, find_packages #!/usr/bin/env python
from os.path import dirname, join from setuptools import setup
here = dirname(__file__)
setup( setup(
name='python-trezor', name='trezor',
version='0.5.0', version='0.5.0',
author='Bitcoin TREZOR', author='Bitcoin TREZOR',
author_email='info@bitcointrezor.com', author_email='info@bitcointrezor.com',
description='Python library for handling TREZOR hardware bitcoin wallet', description='Python library for communicating with TREZOR Bitcoin Hardware Wallet',
long_description=open(join(here, 'README.rst')).read(), url='https://github.com/trezor/python-trezor',
py_modules=[ py_modules=[
'trezorlib.ckd_public', 'trezorlib.ckd_public',
'trezorlib.client', 'trezorlib.client',
@ -28,13 +27,13 @@ setup(
'trezorlib.types_pb2', 'trezorlib.types_pb2',
], ],
test_suite='tests', test_suite='tests',
dependency_links=['https://github.com/trezor/python-mnemonic/archive/master.zip#egg=mnemonic-0.8'],
install_requires=['ecdsa>=0.9', 'protobuf', 'mnemonic>=0.8', 'hidapi>=0.7.99'], install_requires=['ecdsa>=0.9', 'protobuf', 'mnemonic>=0.8', 'hidapi>=0.7.99'],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
classifiers=[ classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux', 'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: Windows', 'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
], ],
) )

Loading…
Cancel
Save