Skip to content

Commit

Permalink
update author/copyright info to be more accurate
Browse files Browse the repository at this point in the history
* update years to 2010-2011
* add MinRK to bgranger as author
  • Loading branch information
minrk committed Jul 28, 2011
1 parent b1cefd1 commit 8ed4b8b
Show file tree
Hide file tree
Showing 31 changed files with 34 additions and 33 deletions.
5 changes: 3 additions & 2 deletions README.rst
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -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"""

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down
2 changes: 1 addition & 1 deletion 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.
#
Expand Down

0 comments on commit 8ed4b8b

Please sign in to comment.