You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
617 B
16 lines
617 B
11 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='python-bitcoinrpc',
|
||
|
version='0.1',
|
||
|
description='Enhanced version of python-jsonrpc for use with Bitcoin',
|
||
|
long_description=open('README').read(),
|
||
|
author='Jeff Garzik',
|
||
|
author_email='<jgarzik@exmulti.com>',
|
||
|
maintainer='Jeff Garzik',
|
||
|
maintainer_email='<jgarzik@exmulti.com>',
|
||
|
url='http://www.github.com/jgarzik/python-bitcoinrpc',
|
||
|
packages=['bitcoinrpc'],
|
||
|
classifiers=['License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: OS Independent'])
|