summaryrefslogtreecommitdiff
path: root/python/setup.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2006-12-20 19:35:28 +0000
committerRafael H. Schloming <rhs@apache.org>2006-12-20 19:35:28 +0000
commitfdaffda972b57a968a7cf4aedbab9c70e1f11ff8 (patch)
treed9e0ff1577d124dde057cf3342470d78788cd1a8 /python/setup.py
parentb4f1424fb7a2013448c87897f3be4baf8aff2027 (diff)
downloadqpid-python-fdaffda972b57a968a7cf4aedbab9c70e1f11ff8.tar.gz
Simple setup.py script
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@489179 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/setup.py')
-rw-r--r--python/setup.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/setup.py b/python/setup.py
new file mode 100644
index 0000000000..b418775c91
--- /dev/null
+++ b/python/setup.py
@@ -0,0 +1,7 @@
+#!/usr/bin/python
+from distutils.core import setup
+
+setup(name="qpid", version="0.1", packages=["qpid"], scripts=["amqp-doc"],
+ url="http://incubator.apache.org/qpid",
+ license="Apache Software License",
+ description="Python language client implementation for Apache Qpid")