-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
35 lines (30 loc) · 1.05 KB
/
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
34
35
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.1.7',
description='A small, modular, transport and protocol neutral RPC '
'library that, among other things, supports JSON-RPC and zmq.',
long_description=read('README.rst'),
long_description_content_type="text/x-rst",
packages=find_packages(exclude=['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',
extras_require={
'gevent': ['gevent'],
'httpclient': ['requests', 'websocket-client', 'gevent-websocket'],
'msgpack': ['msgpack'],
'websocket': ['gevent-websocket'],
'wsgi': ['werkzeug'],
'zmq': ['pyzmq'],
'jsonext': ['jsonext'],
'rabbitmq': ['pika']
}
)