forked from jgarzik/python-bitcoinrpc
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 618 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 618 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-denariusrpc',
version='1.0',
description='Enhanced version of python-jsonrpc for use with Denarius',
long_description=open('README.rst').read(),
author='buzzkillb',
author_email='<buzz@denarius.io>',
maintainer='buzzkillb',
maintainer_email='<jgarzik@pobox.com>',
url='http://www.github.com/buzzkillb/python-denariusrpc',
packages=['denariusrpc'],
classifiers=[
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: OS Independent'
]
)