-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
53 lines (51 loc) · 1.49 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup
# Extract the jadepy version
version = open('jadepy/__init__.py').readlines()
version = [v for v in version if '__version__' in v][0].strip()
version = version.split('"')[-2]
assert len(version.split('.')) == 3, f'Invalid parsed version "{version}"'
setup(
name='jade_client',
version=version,
description='Blockstream Jade Client API',
long_description='A Python library for interacting with the Blockstream Jade hardware wallet',
url='https://github.com/Blockstream/Jade',
author='Blockstream',
author_email='[email protected]',
license_expression='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Programming Language :: Python :: 3',
],
keywords=[
'Blockstream',
'Jade',
'Hardware wallet',
'Bitcoin',
'BTC'
'Liquid',
],
project_urls={
'Documentation': 'https://github.com/Blockstream/Jade/README.md',
'Source': 'https://github.com/Blockstream/Jade',
'Tracker': 'https://github.com/Blockstream/Jade/issues',
},
packages=[
'jadepy'
],
install_requires=[
'cbor2>=5.4.6,<6.0.0',
'pyserial>=3.5.0,<4.0.0'
],
extras_require={
'ble': [
'bleak==0.13.0',
'aioitertools==0.8.0'
],
'requests': [
'requests>=2.26.0,<3.0.0'
]
}
)