From 18948e2848ce85510619cb8434706a94e25de608 Mon Sep 17 00:00:00 2001 From: slush0 Date: Mon, 3 Feb 2014 22:24:54 +0100 Subject: [PATCH] Setup script --- setup.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..18b1fab57 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from distribute_setup import use_setuptools +use_setuptools() + +from setuptools import setup, find_packages +from os.path import dirname, join + +here = dirname(__file__) +setup( + name='python-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(), + packages=find_packages(), + test_suite='tests', + dependency_links=['https://github.com/trezor/python-mnemonic/archive/master.zip#egg=mnemonic-0.6'], + install_requires=['ecdsa>=0.9', 'protobuf', 'mnemonic>=0.6', 'hidapi'], + 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', + ], +)