Implementation of the basic Thrift stack in Python

Summary: Framework, install script, base classes, TSocket, TBinaryProtocol

Notes: Code-gen is coming around the bend...


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664778 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/py/setup.py b/lib/py/setup.py
new file mode 100644
index 0000000..4beaba7
--- /dev/null
+++ b/lib/py/setup.py
@@ -0,0 +1,12 @@
+from distutils.core import setup
+
+setup(name = 'Thrift',
+      version = '1.0',
+      description = 'Thrift Python Libraries',
+      author = ['Mark Slee'],
+      author_email = ['mcslee@facebook.com'],
+      url = 'http://code.facebook.com/thrift',
+      packages = ['thrift', 'thrift.protocol', 'thrift.transport']
+      package_dir = {'thrift' : 'src'},
+      )
+