forked from jgarzik/python-bitcoinrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 617 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 617 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from distutils.core import setup
setup(
name='python-bitcoinrpc',
version='0.3',
description='Enhanced version of python-jsonrpc for use with Bitcoin',
long_description=open('README.rst').read(),
author='Jeff Garzik',
author_email='<jgarzik@pobox.com>',
maintainer='Jeff Garzik',
maintainer_email='<jgarzik@pobox.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'
]
)