-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
26 lines (24 loc) · 860 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
from setuptools import setup
setup(
name='jsonrpc-requests',
version='0.1.1',
author='Giuseppe Ciotta',
author_email='[email protected]',
packages=('jsonrpc_requests',),
license='BSD',
keywords='json-rpc requests',
url='http://github.com/gciotta/jsonrpc-requests',
description='''A JSON-RPC client library, backed by requests''',
long_description=open('README.rst').read(),
install_requires=('requests',),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)