blob: b4f58593951f560f5feefe6c03d2c40459e11386 [file] [log] [blame]
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='python-dubbo',
version='0.0.3-beta15',
url='https://github.com/RitterHou/python-dubbo',
author='hourui',
author_email='hourui@qianmi.com',
description='Python Dubbo Client.',
license='Apache License 2.0',
packages=find_packages(exclude=['tests', 'tools']),
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: Chinese (Simplified)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
],
install_requires=[
'kazoo==2.4.0'
],
)