-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 707 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
# forked from https://github.com/jgarzik/python-bitcoinrpc
from distutils.core import setup
setup(
name='python-ethereumrpc',
version='0.1',
description='Enhanced version of python-jsonrpc for use with Ethereum',
long_description=open('README.rst').read(),
author='Linggih Saputro',
author_email='<linggih.saputro@sci.ui.ac.id>',
maintainer='Linggih Saputro',
maintainer_email='<linggih.saputro@sci.ui.ac.id>',
url='http://www.github.com/nggih/python-ethereumrpc',
packages=['ethereumrpc'],
classifiers=[
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: OS Independent'
]
)