Changing licensing and authorship.

This commit is contained in:
Sean Reifschneider
2010-02-08 14:38:10 -07:00
parent ba6bc5d192
commit 673b403966
4 changed files with 17 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
* Changing the license to the PSF License.
* Removing Evan's e-mail address at his request, changing authorship to
Sean.
Sat, 28 Nov 2009 01:07:42 -0700 Sean Reifschneider <jafo@tummy.com>
* Version 1.45

View File

@@ -2,9 +2,9 @@ Metadata-Version: 1.0
Name: python-memcached
Version: 1.31
Summary: A Python memcached client library.
Home-page: http://www.danga.com/memcached/
Author: Evan Martin
Author-email: martine@danga.com
License: Python
Home-page: http://www.tummy.com/Community/software/python-memcached/
Author: Sean Reifschneider
Author-email: jafo-memcached@tummy.com
License: Python Software Foundation License
Description: A Python memcached client library.
Platform: UNKNOWN

7
README
View File

@@ -1,7 +1,8 @@
This package was originally written by Evan Martin of Danga.
Sean Reifschneider of tummy.com, ltd. has taken over maintenance of it.
This software is a 100% Python interface to the memcached memory cache
daemon. It is the client side software which allows storing values in one
or more, possibly remote, memcached servers. Search google for memcached
for more information.
This package was originally written by Evan Martin of Danga.
Please do not contact Evan about maintenance.
Sean Reifschneider of tummy.com, ltd. has taken over maintenance of it.

View File

@@ -77,10 +77,12 @@ except ImportError:
from StringIO import StringIO
__author__ = "Evan Martin <martine@danga.com>"
# Original author: Evan Martin of Danga Interactive
__author__ = "Sean Reifschneider <jafo-memcached@tummy.com>"
__version__ = "1.31"
__copyright__ = "Copyright (C) 2003 Danga Interactive"
__license__ = "Python"
# http://en.wikipedia.org/wiki/Python_Software_Foundation_License
__license__ = "Python Software Foundation License"
SERVER_MAX_KEY_LENGTH = 250
# Storing values larger than 1MB requires recompiling memcached. If you do,