forked from bitcoin-core/HWI
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 914 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="hwi",
version="0.0.4",
author="Andrew Chow",
author_email="[email protected]",
description="A library for working with Bitcoin hardware wallets",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/achow101/hwi",
packages=setuptools.find_packages(exclude=['dopcs', 'test']),
install_requires=[
'hidapi', # HID API needed in general
'trezor[hidapi]', # Trezor One
'btchip-python', # Ledger Nano S
'keepkey', # KeepKey
'ckcc-protocol', # Coldcard
'pyaes',
],
python_requires='>=3',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)