forked from mbr/tinyrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 1009 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
29
30
31
32
33
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='tinyrpc',
version='1.0.0',
description='A small, modular, transport and protocol neutral RPC '
'library that, among other things, supports JSON-RPC and zmq.',
long_description=read('README.rst'),
packages=find_packages(exclude=['tests', 'examples']),
keywords='json rpc json-rpc jsonrpc 0mq zmq zeromq',
author='Marc Brinkmann',
author_email='[email protected]',
maintainer='Leo Noordergraaf',
maintainer_email='[email protected]',
url='http://github.com/mbr/tinyrpc',
license='MIT',
install_requires=['six'],
extras_require={
'gevent': ['gevent'],
'httpclient': ['requests', 'websocket-client', 'gevent-websocket'],
'websocket': ['gevent-websocket'],
'wsgi': ['werkzeug'],
'zmq': ['pyzmq'],
'jsonext': ['jsonext']
}
)