#!/usr/bin/env python
###############################################################################

from setuptools import setup

###############################################################################

setup(
    author='Hasan Karahan',
    author_email='hasan.karahan@blackhan.com',
    description='RPC Server',
    name='rpc-server',
    license='MIT',
    install_requires=[
        'tornado==4.3'
    ],
    url='https://github.com/hsk81/protobuf-rpc-js.git',
    version='1.1.2',
)

###############################################################################
###############################################################################
