forked from LedgerHQ/btchip-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 930 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#from distribute_setup import use_setuptools
#use_setuptools()
from setuptools import setup, find_packages
from os.path import dirname, join
here = dirname(__file__)
import btchip
setup(
name='btchip-qtum',
version=btchip.__version__,
author='BTChip',
author_email='[email protected]',
description='Python library to communicate with Ledger Nano dongle for Qtum',
long_description=open(join(here, 'README.md')).read(),
url='https://github.com/qtumproject/btchip-python',
packages=find_packages(),
install_requires=['hidapi>=0.7.99'],
extras_require = {
'smartcard': ['python-pyscard>=1.6.13', 'ecdsa>=0.9']
},
include_package_data=True,
zip_safe=False,
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X'
]
)