forked from sumcoinlabs/python-sumcoinrpc
-
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) · 634 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 634 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-sumcoinrpc',
version='1.0',
description='Enhanced version of python-jsonrpc for use with Sumcoin',
long_description=open('README.rst').read(),
author='Sumtoshi',
author_email='<support@sumcoinindex.com>',
maintainer='Sumcoin Index',
maintainer_email='<support@sumcoinindex.com>',
url='http://www.github.com/sumcoinlabs/python-sumcoinrpc',
packages=['sumcoinrpc'],
classifiers=[
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: OS Independent'
]
)