mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
10 lines
299 B
Python
10 lines
299 B
Python
|
from distutils.core import setup
|
||
|
setup(name='btcspendfrom',
|
||
|
version='1.0',
|
||
|
description='Command-line utility for bitcoin "coin control"',
|
||
|
author='Gavin Andresen',
|
||
|
author_email='gavin@bitcoinfoundation.org',
|
||
|
requires=['jsonrpc'],
|
||
|
scripts=['spendfrom.py'],
|
||
|
)
|