blob: 53f8108175eca77fdd3e2a9dfc01523b4ce01d71 [file] [log] [blame]
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='dubbo.py',
version='0.0.1',
url='https://github.com/RitterHou/dubbo.py',
author='hourui',
author_email='hourui@qianmi.com',
description='Python Dubbo Client.',
license='Apache License 2.0',
packages=['dubbo'],
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'
],
)