Skip to content

Commit

Permalink
Fixing up setup.py script.
Browse files Browse the repository at this point in the history
  • Loading branch information
ellisonbg committed Aug 29, 2010
1 parent a39116c commit 98c6b27
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions setup.py
Expand Up @@ -112,15 +112,36 @@ def run(self):
# Main setup # 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( setup(
name = "pyzmq", name = "pyzmq",
version = "2.0.7", version = "2.0.7",
packages = ['zmq', 'zmq.tests', 'zmq.eventloop'], packages = ['zmq', 'zmq.tests', 'zmq.eventloop'],
ext_modules = [zmq], ext_modules = [zmq],
author = "Brian E. Granger", author = "Brian E. Granger",
author_email = "ellisonbg@gmail.com", 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", 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'
]
) )


0 comments on commit 98c6b27

Please sign in to comment.