-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
54 lines (53 loc) · 1.53 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
from setuptools import setup
import green_cli
setup(
name='green_cli',
version=green_cli.version,
description='Blockstream Green Command Line Interface',
long_description='green-cli is a command line interface to Blockstream Green multisig and singlesig Bitcoin and Liquid wallets, based on the Green gdk library.',
url='https://github.com/Blockstream/green_cli',
author='Blockstream',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords=[
'Blockstream',
'Green',
'Bitcoin',
'wallet',
'Liquid',
'Elements',
'BTC'
],
project_urls={
'Documentation': 'https://github.com/Blockstream/green_cli/README.md',
'Source': 'https://github.com/Blockstream/green_cli',
'Tracker': 'https://github.com/Blockstream/green_cli/issues',
},
packages=[
'green_cli',
'green_cli/authenticators',
],
install_requires=[
'wallycore>=1.3.1',
'green_gdk>=0.73.2,<0.74.0',
'click>=8.1.7',
'click-repl>=0.3.0',
],
entry_points='''
[console_scripts]
green-cli=green_cli.green_cli:main
''',
extras_require={
'jade': [
'jade_client>=1.0.32',
],
}
)