blob: b418775c910e6a7b90dffecf51643d64cf569324 (
plain)
1
2
3
4
5
6
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")
|