forked from Consensys/ethjsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 776 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='ethjsonrpc',
version='0.2.8',
description='Ethereum JSON-RPC client',
long_description=open('README.rst').read(),
author='ConsenSys',
author_email=['[email protected]'],
url='https://github.com/ConsenSys/ethjsonrpc',
packages=['ethjsonrpc'],
license='Unlicense',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
],
install_requires=[
'ethereum==1.0.8',
'requests==2.9.1',
],
)