添加setup
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..53f8108
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,23 @@
+# -*- 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'
+    ],
+)