diff options
| author | Justin Ross <jross@apache.org> | 2016-04-21 12:31:34 +0000 |
|---|---|---|
| committer | Justin Ross <jross@apache.org> | 2016-04-21 12:31:34 +0000 |
| commit | 71149592670f7592886751a9a866459bef0f12cc (patch) | |
| tree | e4d1fd948055e36d1560112a318e77a210506d06 /qpid/python/setup.py | |
| parent | a835fb2724824dcd8a470fb51424cedeb6b38f62 (diff) | |
| download | qpid-python-71149592670f7592886751a9a866459bef0f12cc.tar.gz | |
QPID-7207: Create independent cpp and python subtrees, with content from tools and extras
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1740289 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/setup.py')
| -rwxr-xr-x | qpid/python/setup.py | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/qpid/python/setup.py b/qpid/python/setup.py index b85ca12b0c..fece3d91b3 100755 --- a/qpid/python/setup.py +++ b/qpid/python/setup.py @@ -17,7 +17,7 @@ # specific language governing permissions and limitations # under the License. # -import os, re, sys, string +import os, re, sys, string, platform from distutils.core import setup, Command from distutils.command.build import build as _build from distutils.command.build_py import build_py as _build_py @@ -297,17 +297,24 @@ class install_lib(_install_lib): extra.append(tgt) return outfiles + extra +scripts = ["qpid-python-test"] + +if platform.system() == "Windows": + scripts.append("qpid-python-test.bat") + setup(name="qpid-python", version="0.35", author="Apache Qpid", - author_email="dev@qpid.apache.org", + author_email="users@qpid.apache.org", packages=["mllib", "qpid", "qpid.messaging", "qpid.tests", - "qpid.tests.messaging", "qpid.saslmech", "qpid.tests.saslmech"], + "qpid.tests.messaging", "qpid.saslmech", "qpid.tests.saslmech", + "qpid_tests", "qpid_tests.broker_1_0", "qpid_tests.broker_0_10", + "qpid_tests.broker_0_9", "qpid_tests.broker_0_8"], package_data={"qpid": ["specs/*.dtd", "specs/*.xml"]}, - scripts=["qpid-python-test"], + scripts=scripts, url="http://qpid.apache.org/", license="Apache Software License", - description="Python client implementation for Apache Qpid", + description="Python client implementation and AMQP conformance tests for Apache Qpid", cmdclass={"build": build, "build_py": build_py, "build_doc": build_doc, |
