Changing licensing and authorship.
This commit is contained in:
@@ -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>
|
Sat, 28 Nov 2009 01:07:42 -0700 Sean Reifschneider <jafo@tummy.com>
|
||||||
|
|
||||||
* Version 1.45
|
* Version 1.45
|
||||||
|
|||||||
8
PKG-INFO
8
PKG-INFO
@@ -2,9 +2,9 @@ Metadata-Version: 1.0
|
|||||||
Name: python-memcached
|
Name: python-memcached
|
||||||
Version: 1.31
|
Version: 1.31
|
||||||
Summary: A Python memcached client library.
|
Summary: A Python memcached client library.
|
||||||
Home-page: http://www.danga.com/memcached/
|
Home-page: http://www.tummy.com/Community/software/python-memcached/
|
||||||
Author: Evan Martin
|
Author: Sean Reifschneider
|
||||||
Author-email: martine@danga.com
|
Author-email: jafo-memcached@tummy.com
|
||||||
License: Python
|
License: Python Software Foundation License
|
||||||
Description: A Python memcached client library.
|
Description: A Python memcached client library.
|
||||||
Platform: UNKNOWN
|
Platform: UNKNOWN
|
||||||
|
|||||||
7
README
7
README
@@ -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
|
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
|
daemon. It is the client side software which allows storing values in one
|
||||||
or more, possibly remote, memcached servers. Search google for memcached
|
or more, possibly remote, memcached servers. Search google for memcached
|
||||||
for more information.
|
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.
|
||||||
|
|||||||
@@ -77,10 +77,12 @@ except ImportError:
|
|||||||
from StringIO import StringIO
|
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"
|
__version__ = "1.31"
|
||||||
__copyright__ = "Copyright (C) 2003 Danga Interactive"
|
__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
|
SERVER_MAX_KEY_LENGTH = 250
|
||||||
# Storing values larger than 1MB requires recompiling memcached. If you do,
|
# Storing values larger than 1MB requires recompiling memcached. If you do,
|
||||||
|
|||||||
Reference in New Issue
Block a user