mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
dba91a9a67
Should be both useful and also a pretty good demonstration of using the raw transactions API.
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'],
|
|
)
|