From 98c6b27ee46601bdad8e09113b7a053810f55cc7 Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Sat, 28 Aug 2010 19:02:17 -0700 Subject: [PATCH] Fixing up setup.py script. --- setup.py | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5c5afc3db..e3504a144 100644 --- a/setup.py +++ b/setup.py @@ -112,6 +112,12 @@ def run(self): # Main setup #----------------------------------------------------------------------------- +long_desc = \ +""" +PyZMQ is a lightweight and super-fast messaging library built on top of +the ZeroMQ library (http://www.zeromq.org). +""" + setup( name = "pyzmq", version = "2.0.7", @@ -119,8 +125,23 @@ def run(self): ext_modules = [zmq], author = "Brian E. Granger", author_email = "ellisonbg@gmail.com", - description = "Cython based Python bindings for 0MQ.", + url = 'http://github.com/zeromq/pyzmq', + download_url = 'http://github.com/zeromq/pyzmq/downloads', + description = "Python bindings for 0MQ.", + long_description = long_desc, license = "LGPL", - cmdclass = cmdclass + cmdclass = cmdclass, + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Intended Audience :: Financial and Insurance Industry', + 'Intended Audience :: Science/Research', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Topic :: System :: Networking' + ] )