-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (35 loc) · 1.08 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
# based on <http://click.pocoo.org/5/setuptools/#setuptools-integration>
#
# To use this, install with:
#
# pip install --editable .
from setuptools import setup, find_packages
VERSION = '1.5'
with open('README.md', 'rt') as fd:
desc = fd.read()
if __name__ == '__main__':
setup(
name='psbt_dump',
author='Coinkite Inc.',
author_email='[email protected]',
description="Dump PSBT files to text with as few assumptions as possible",
version=VERSION,
packages=find_packages(),
long_description=desc,
long_description_content_type="text/markdown",
url="https://github.com/doc-hex/psbt_dump",
python_requires='>3.6.0',
install_requires=[
'Click',
'pycoin==0.92.20220529'
],
entry_points='''
[console_scripts]
psbt_dump=psbt_dump:dump
''',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)