psbt_faker/setup.py
Peter D. Gray 7f5852ec17
Framework
2020-02-10 11:46:59 -05:00

23 lines
400 B
Python

# based on <http://click.pocoo.org/5/setuptools/#setuptools-integration>
#
# To use this, install with:
#
# pip install --editable .
from setuptools import setup
setup(
name='psbt_faker',
version='1.0',
py_modules=[],
python_requires='>3.6.0',
install_requires=[
'Click',
],
entry_points='''
[console_scripts]
psbt_faker=main:faker
''',
)