dba91a9a67
Should be both useful and also a pretty good demonstration of using the raw transactions API.
9 lines
299 B
Python
9 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'],
|
|
)
|