-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
57 lines (48 loc) · 1.2 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
54
55
56
#
# Coldcard USB protocol and python support library
#
# To use this command, during dev, install and yet be able to edit the code:
#
# pip install --editable .
#
from setuptools import setup
requirements = [
'hidapi>=0.7.99.post21',
'ecdsa>=0.17',
'pyaes',
]
cli_requirements = [
'click>=6.7',
]
tests_require = [
'pytest'
]
with open("README.md", "r") as fh:
long_description = fh.read()
from ckcc import __version__
setup(
name='ckcc-protocol',
version=__version__,
packages=[ 'ckcc' ],
python_requires='>3.6.0',
install_requires=requirements,
tests_require=tests_require,
extras_require={
'cli': cli_requirements,
},
url='https://github.com/Coldcard/ckcc-protocol',
author='Coinkite Inc.',
author_email='[email protected]',
description="Communicate with your Coldcard using Python",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points='''
[console_scripts]
ckcc=ckcc.cli:main
''',
classifiers=[
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
)