ckbunker/setup.py
2020-02-19 08:52:08 -05:00

43 lines
1.2 KiB
Python

# (c) Copyright 2020 by Coinkite Inc. This file is part of Coldcard <coldcardwallet.com>
# and is covered by GPLv3 license found in COPYING.
#
# 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',
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.0.0',
],
entry_points='''
[console_scripts]
ckbunker=main:main
''',
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
)