From 8ed4b8b43e24f8ac06a08ebe22f00e249d1128b3 Mon Sep 17 00:00:00 2001 From: MinRK Date: Thu, 28 Jul 2011 16:09:36 -0700 Subject: [PATCH] update author/copyright info to be more accurate * update years to 2010-2011 * add MinRK to bgranger as author --- README.rst | 5 +++-- docs/source/conf.py | 2 +- setup.py | 4 ++-- zmq/__init__.py | 2 +- zmq/core/__init__.py | 2 +- zmq/core/constants.pyx | 2 +- zmq/core/context.pxd | 2 +- zmq/core/context.pyx | 2 +- zmq/core/device.pyx | 2 +- zmq/core/error.pyx | 2 +- zmq/core/libzmq.pxd | 2 +- zmq/core/message.pxd | 2 +- zmq/core/message.pyx | 2 +- zmq/core/poll.pyx | 2 +- zmq/core/socket.pxd | 2 +- zmq/core/socket.pyx | 2 +- zmq/core/stopwatch.pxd | 2 +- zmq/core/stopwatch.pyx | 2 +- zmq/core/version.pyx | 2 +- zmq/devices/__init__.py | 2 +- zmq/tests/__init__.py | 2 +- zmq/tests/test_context.py | 2 +- zmq/tests/test_log.py | 2 +- zmq/tests/test_message.py | 2 +- zmq/tests/test_multipart.py | 2 +- zmq/tests/test_pair.py | 2 +- zmq/tests/test_poll.py | 2 +- zmq/tests/test_pubsub.py | 2 +- zmq/tests/test_reqrep.py | 2 +- zmq/tests/test_socket.py | 2 +- zmq/utils/initthreads.pyx | 2 +- 31 files changed, 34 insertions(+), 33 deletions(-) diff --git a/README.rst b/README.rst index e16a697ff..82ec57367 100644 --- a/README.rst +++ b/README.rst @@ -203,8 +203,9 @@ Currently, we are using the following steps to release PyZMQ: Authors ======= -This project was started by and continues to be led by Brian E. Granger -(ellisonbg AT gmail DOT com). +This project was started and continues to be led by Brian E. Granger +(ellisonbg AT gmail DOT com). Min Ragan-Kelley (benjaminrk AT gmail DOT com) +is the primary developer of pyzmq at this time. The following people have contributed to the project: diff --git a/docs/source/conf.py b/docs/source/conf.py index 32d2823f0..e53ae242e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -51,7 +51,7 @@ # General information about the project. project = u'PyZMQ' -copyright = u"""2010, Brian E. Granger. +copyright = u"""2010-2011, Brian E. Granger & Min Ragan-Kelley. ØMQ logo © iMatix Corportation, used under the Creative Commons Attribution-Share Alike 3.0 License. Python logo ™ of the Python Software Foundation, used by Min RK with permission from the Foundation""" diff --git a/setup.py b/setup.py index 188be429f..a2e07af11 100644 --- a/setup.py +++ b/setup.py @@ -603,8 +603,8 @@ def extract_version(): 'zmq.devices', 'zmq.utils'], ext_modules = extensions, package_data = package_data, - author = "Brian E. Granger", - author_email = "ellisonbg@gmail.com", + author = "Brian E. Granger, Min Ragan-Kelley", + author_email = "zeromq-dev@lists.zeromq.org", url = 'http://github.com/zeromq/pyzmq', download_url = 'http://github.com/zeromq/pyzmq/downloads', description = "Python bindings for 0MQ.", diff --git a/zmq/__init__.py b/zmq/__init__.py index 76ac5e5f1..3756ae7cd 100644 --- a/zmq/__init__.py +++ b/zmq/__init__.py @@ -1,7 +1,7 @@ """Python bindings for 0MQ.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/__init__.py b/zmq/core/__init__.py index e63037d9f..038346cf2 100644 --- a/zmq/core/__init__.py +++ b/zmq/core/__init__.py @@ -1,7 +1,7 @@ """Python bindings for core 0MQ objects.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/constants.pyx b/zmq/core/constants.pyx index e433ca458..a9ecc6af7 100644 --- a/zmq/core/constants.pyx +++ b/zmq/core/constants.pyx @@ -1,7 +1,7 @@ """0MQ Constants.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/context.pxd b/zmq/core/context.pxd index ff3dc0d30..b56b44e7d 100644 --- a/zmq/core/context.pxd +++ b/zmq/core/context.pxd @@ -1,7 +1,7 @@ """0MQ Context class declaration.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/context.pyx b/zmq/core/context.pyx index 128241520..e6f28f8a0 100644 --- a/zmq/core/context.pyx +++ b/zmq/core/context.pyx @@ -1,7 +1,7 @@ """0MQ Context class.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/device.pyx b/zmq/core/device.pyx index 92e8bd8ee..b704d792c 100644 --- a/zmq/core/device.pyx +++ b/zmq/core/device.pyx @@ -1,7 +1,7 @@ """Python binding for 0MQ device function.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/error.pyx b/zmq/core/error.pyx index 6d046957c..a76d2a2ae 100644 --- a/zmq/core/error.pyx +++ b/zmq/core/error.pyx @@ -1,7 +1,7 @@ """0MQ Error classes and functions.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/libzmq.pxd b/zmq/core/libzmq.pxd index 4c7a1b6e8..7bb839cf7 100644 --- a/zmq/core/libzmq.pxd +++ b/zmq/core/libzmq.pxd @@ -1,7 +1,7 @@ """All the C imports for 0MQ""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/message.pxd b/zmq/core/message.pxd index 605ab2d70..4aa0d419d 100644 --- a/zmq/core/message.pxd +++ b/zmq/core/message.pxd @@ -1,7 +1,7 @@ """0MQ Message related class declarations.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/message.pyx b/zmq/core/message.pyx index e47d8b3f3..89c1b55bf 100644 --- a/zmq/core/message.pyx +++ b/zmq/core/message.pyx @@ -1,7 +1,7 @@ """0MQ Message related classes.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/poll.pyx b/zmq/core/poll.pyx index bbc5bbb8a..14fb9daed 100644 --- a/zmq/core/poll.pyx +++ b/zmq/core/poll.pyx @@ -1,7 +1,7 @@ """0MQ polling related functions and classes.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/socket.pxd b/zmq/core/socket.pxd index 14b23de26..ddd51eb15 100644 --- a/zmq/core/socket.pxd +++ b/zmq/core/socket.pxd @@ -1,7 +1,7 @@ """0MQ Socket class declaration.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/socket.pyx b/zmq/core/socket.pyx index 2c62acacd..edb82e49d 100644 --- a/zmq/core/socket.pyx +++ b/zmq/core/socket.pyx @@ -1,7 +1,7 @@ """0MQ Socket class.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/stopwatch.pxd b/zmq/core/stopwatch.pxd index 759d7aade..5d5616691 100644 --- a/zmq/core/stopwatch.pxd +++ b/zmq/core/stopwatch.pxd @@ -1,7 +1,7 @@ """0MQ Stopwatch class declaration.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/stopwatch.pyx b/zmq/core/stopwatch.pyx index b0e4db298..a086dbcb1 100644 --- a/zmq/core/stopwatch.pyx +++ b/zmq/core/stopwatch.pyx @@ -1,7 +1,7 @@ """0MQ Stopwatch class.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/core/version.pyx b/zmq/core/version.pyx index 01bcece20..0bdf3a6c7 100644 --- a/zmq/core/version.pyx +++ b/zmq/core/version.pyx @@ -1,7 +1,7 @@ """PyZMQ and 0MQ version functions.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/devices/__init__.py b/zmq/devices/__init__.py index e88772a42..9dae7c87e 100644 --- a/zmq/devices/__init__.py +++ b/zmq/devices/__init__.py @@ -1,7 +1,7 @@ """0MQ Device classes for running in background threads or processes.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/__init__.py b/zmq/tests/__init__.py index 9ddc46528..da06b4577 100644 --- a/zmq/tests/__init__.py +++ b/zmq/tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_context.py b/zmq/tests/test_context.py index 5b6488f37..df21f3df8 100644 --- a/zmq/tests/test_context.py +++ b/zmq/tests/test_context.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_log.py b/zmq/tests/test_log.py index 0a1b80037..7f0dee9ac 100644 --- a/zmq/tests/test_log.py +++ b/zmq/tests/test_log.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_message.py b/zmq/tests/test_message.py index 3963e181d..86da3d3a1 100644 --- a/zmq/tests/test_message.py +++ b/zmq/tests/test_message.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf8 -*- # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_multipart.py b/zmq/tests/test_multipart.py index 396cf8fca..4f13d7f24 100644 --- a/zmq/tests/test_multipart.py +++ b/zmq/tests/test_multipart.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_pair.py b/zmq/tests/test_pair.py index f2b7b58a5..f2b6bc523 100644 --- a/zmq/tests/test_pair.py +++ b/zmq/tests/test_pair.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_poll.py b/zmq/tests/test_poll.py index 476bfe410..c67289b90 100644 --- a/zmq/tests/test_poll.py +++ b/zmq/tests/test_poll.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_pubsub.py b/zmq/tests/test_pubsub.py index 560a9627b..a30954730 100644 --- a/zmq/tests/test_pubsub.py +++ b/zmq/tests/test_pubsub.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_reqrep.py b/zmq/tests/test_reqrep.py index 6ea1b94ec..beec55a1b 100644 --- a/zmq/tests/test_reqrep.py +++ b/zmq/tests/test_reqrep.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/tests/test_socket.py b/zmq/tests/test_socket.py index 2e6a97b15..82d3d25fb 100644 --- a/zmq/tests/test_socket.py +++ b/zmq/tests/test_socket.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf8 -*- # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. # diff --git a/zmq/utils/initthreads.pyx b/zmq/utils/initthreads.pyx index c35bf4202..9ace665de 100644 --- a/zmq/utils/initthreads.pyx +++ b/zmq/utils/initthreads.pyx @@ -1,7 +1,7 @@ """Utility to initialize threads.""" # -# Copyright (c) 2010 Brian E. Granger +# Copyright (c) 2010-2011 Brian E. Granger & Min Ragan-Kelley # # This file is part of pyzmq. #