Skip to content

Commit 96cd7cc

Browse files
committed
Transfer to me and update email address
1 parent b4825a6 commit 96cd7cc

File tree

10 files changed

+15
-14
lines changed

10 files changed

+15
-14
lines changed

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012, Wireless Innovation Ltd.
1+
Copyright (c) 2012, Dan Brown <[email protected]>
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
@@ -7,6 +7,6 @@ Redistribution and use in source and binary forms, with or without modification,
77

88
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
99

10-
* Neither the name of Wireless Innovation Ltd nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10+
* Neither the name of Dan Brown nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1111

1212
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
JSON-RPC 2.0 Over ZeroMQ
33
========================
44

5-
Written by `Dan Brown <mailto:dan@danwb.net>`_. See the the LICENSE file for licensing information.
5+
Written by `Dan Brown <mailto:dan@stompydan.net>`_. See the the LICENSE file for licensing information.
66

77
This is a library in Python enabling `JSON-RPC 2.0 <http://www.jsonrpc.org/spec.html>`_ over `ZeroMQ <http://zeromq.org/>`_. It includes support for both clients and servers.
88

jsonrpc2_zeromq/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Part of the jsonrpc2-zeromq-python project.
2-
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
2+
# (c) 2012 Dan Brown, All Rights Reserved.
33
# Please see the LICENSE file in the root of this project for license
44
# information.
55

jsonrpc2_zeromq/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Part of the jsonrpc2-zeromq-python project.
2-
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
2+
# (c) 2012 Dan Brown, All Rights Reserved.
33
# Please see the LICENSE file in the root of this project for license
44
# information.
55

jsonrpc2_zeromq/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Part of the jsonrpc2-zeromq-python project.
2-
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
2+
# (c) 2012 Dan Brown, All Rights Reserved.
33
# Please see the LICENSE file in the root of this project for license
44
# information.
55

jsonrpc2_zeromq/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Part of the jsonrpc2-zeromq-python project.
2-
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
2+
# (c) 2012 Dan Brown, All Rights Reserved.
33
# Please see the LICENSE file in the root of this project for license
44
# information.
55

jsonrpc2_zeromq/test/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Part of the jsonrpc2-zeromq-python project.
2-
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
2+
# (c) 2012 Dan Brown, All Rights Reserved.
33
# Please see the LICENSE file in the root of this project for license
44
# information.
55

jsonrpc2_zeromq/test/helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Part of the jsonrpc2-zeromq-python project.
2-
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
2+
# (c) 2012 Dan Brown, All Rights Reserved.
33
# Please see the LICENSE file in the root of this project for license
44
# information.
55

jsonrpc2_zeromq/test/test_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Part of the jsonrpc2-zeromq-python project.
2-
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
2+
# (c) 2012 Dan Brown, All Rights Reserved.
33
# Please see the LICENSE file in the root of this project for license
44
# information.
55

setup.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Part of the jsonrpc2-zeromq-python project.
2-
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
2+
# (c) 2012 Dan Brown, All Rights Reserved.
33
# Please see the LICENSE file in the root of this project for license
44
# information.
55

@@ -21,8 +21,8 @@
2121
version = version,
2222
description = description,
2323
long_description = long_description,
24-
url = "https://github.com/wiltd/python-jsonrpc2-zeromq",
25-
download_url = "https://github.com/wiltd/"
24+
url = "https://github.com/dwb/python-jsonrpc2-zeromq",
25+
download_url = "https://github.com/dwb/"
2626
"jsonrpc2-zeromq-python/tarball/v%s" % (version,),
2727
classifiers = [
2828
"Programming Language :: Python :: 2.7",
@@ -31,7 +31,8 @@
3131
"License :: OSI Approved :: BSD License",
3232
],
3333
author = "Dan Brown",
34-
author_email = "[email protected]",
34+
author_email = "[email protected]",
35+
license = "License :: OSI Approved :: BSD License",
3536
packages = ["jsonrpc2_zeromq"],
3637
install_requires=[
3738
"distribute",

0 commit comments

Comments
 (0)