summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@guin.tummy.com>2010-02-08 14:38:10 -0700
committerSean Reifschneider <jafo@guin.tummy.com>2010-02-08 14:38:10 -0700
commit673b403966d078dd9b1bdab3e90f3cfb3afee78f (patch)
treeb97d1db405dfd38dc5dfbd2640d339c6342601b7
parentba6bc5d192296f6dbf51de039a100ac6ff6c7838 (diff)
downloadpython-memcached-673b403966d078dd9b1bdab3e90f3cfb3afee78f.tar.gz
Changing licensing and authorship.
-rw-r--r--ChangeLog5
-rw-r--r--PKG-INFO8
-rw-r--r--README7
-rw-r--r--memcache.py6
4 files changed, 17 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index e9fb7bb..2e99992 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/PKG-INFO b/PKG-INFO
index 891c9f6..548d417 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -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
diff --git a/README b/README
index cfd4182..55e5af4 100644
--- a/README
+++ b/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
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.
diff --git a/memcache.py b/memcache.py
index 8b1f10b..ab50b0e 100644
--- a/memcache.py
+++ b/memcache.py
@@ -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,