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='0.6',
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='git@marcbrinkmann.de',
maintainer='Leo Noordergraaf',
maintainer_email='leo@noordergraaf.net',
url='http://github.com/mbr/tinyrpc',
license='MIT',
install_requires=['six'],
extras_require={
'gevent': ['gevent'],
'httpclient': ['requests', 'websocket-client'],
'websocket': ['gevent-websocket'],
'wsgi': ['werkzeug'],
'zmq': ['pyzmq'],
'jsonext': ['jsonext']
}
)
|