diff options
author | Rafael H. Schloming <rhs@apache.org> | 2006-12-20 19:35:28 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2006-12-20 19:35:28 +0000 |
commit | 9b7a8cc90e159cbcdbececf0f2c4ec81e2976203 (patch) | |
tree | edbf213931d4fff56efc67088303c2547877c3a3 /qpid/python/setup.py | |
parent | 8d15851f88be03e89a3901a8ac7fdcce3c6396f0 (diff) | |
download | qpid-python-9b7a8cc90e159cbcdbececf0f2c4ec81e2976203.tar.gz |
Simple setup.py script
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@489179 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/setup.py')
-rw-r--r-- | qpid/python/setup.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qpid/python/setup.py b/qpid/python/setup.py new file mode 100644 index 0000000000..b418775c91 --- /dev/null +++ b/qpid/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") |