You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by rh...@apache.org on 2006/12/20 20:35:29 UTC

svn commit: r489179 - /incubator/qpid/trunk/qpid/python/setup.py

Author: rhs
Date: Wed Dec 20 11:35:28 2006
New Revision: 489179

URL: http://svn.apache.org/viewvc?view=rev&rev=489179
Log:
Simple setup.py script

Added:
    incubator/qpid/trunk/qpid/python/setup.py   (with props)

Added: incubator/qpid/trunk/qpid/python/setup.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/setup.py?view=auto&rev=489179
==============================================================================
--- incubator/qpid/trunk/qpid/python/setup.py (added)
+++ incubator/qpid/trunk/qpid/python/setup.py Wed Dec 20 11:35:28 2006
@@ -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")

Propchange: incubator/qpid/trunk/qpid/python/setup.py
------------------------------------------------------------------------------
    svn:eol-style = native