From 58711df5d34843c9ada7b921ad949c1e78608f9e Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 26 Jul 2014 12:22:32 +0200 Subject: [PATCH] update setup.py file --- README.rst | 4 ++-- setup.py | 15 +++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) mode change 100644 => 100755 setup.py diff --git a/README.rst b/README.rst index 9b110fa..c06f4ac 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ -trezorlib-python -================ +python-trezor +============= Client side implementation for Trezor-compatible Bitcoin hardware wallets. diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index a0a682e..c4f3209 --- a/setup.py +++ b/setup.py @@ -1,14 +1,13 @@ -from setuptools import setup, find_packages -from os.path import dirname, join +#!/usr/bin/env python +from setuptools import setup -here = dirname(__file__) setup( - name='python-trezor', + name='trezor', version='0.5.0', author='Bitcoin TREZOR', author_email='info@bitcointrezor.com', - description='Python library for handling TREZOR hardware bitcoin wallet', - long_description=open(join(here, 'README.rst')).read(), + description='Python library for communicating with TREZOR Bitcoin Hardware Wallet', + url='https://github.com/trezor/python-trezor', py_modules=[ 'trezorlib.ckd_public', 'trezorlib.client', @@ -28,13 +27,13 @@ setup( 'trezorlib.types_pb2', ], 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'], include_package_data=True, zip_safe=False, classifiers=[ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Operating System :: POSIX :: Linux', - 'Operating System :: POSIX :: Windows', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: MacOS :: MacOS X', ], )