-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
47 lines (44 loc) · 1.25 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
# Copyright 2020 by Coinkite Inc. This file is covered by license found in COPYING-CC.
#
# based on <http://click.pocoo.org/5/setuptools/#setuptools-integration>
#
# To use this, install with:
#
# pip install --editable .
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='bunker',
version='0.1',
license='MIT+CC',
python_requires='>=3.7.0',
url='https://github.com/Coldcard/ckbunker',
author='Coinkite Inc.',
author_email='support@coinkite.com',
description="Submit PSBT files automatically to your Coldcard for signing",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[ # see requirements.txt tho.
'Click',
'stem',
'aiohttp',
'aiohttp-jinja2',
'ckcc-protocol>=1.3.2',
'pyyaml',
'pynacl==1.3.0',
'pendulum==2.0.3',
'aiohttp_session',
'requests[socks]',
],
entry_points='''
[console_scripts]
ckbunker=main:main
''',
classifiers=[
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
packages=[],
)