diff options
| author | Sean Reifschneider <jafo@tummy.com> | 2008-04-29 21:04:47 -0600 |
|---|---|---|
| committer | Sean Reifschneider <jafo@tummy.com> | 2008-04-29 21:04:47 -0600 |
| commit | 5ba930639500cfac5c895238469f27e29717c06e (patch) | |
| tree | 13eb74805b47fbca3dab983d3ae3e4ebaa468833 /setup.py | |
| download | python-memcached-5ba930639500cfac5c895238469f27e29717c06e.tar.gz | |
Patch from Jehiah Czebotar to catch an additional server disconnect
situation.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ffb6f05 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +from setuptools import setup +import memcache + +setup(name="python-memcached", + version=memcache.__version__, + description="Pure python memcached client", + long_description=open("README").read(), + author="Evan Martin", + author_email="martine@danga.com", + maintainer="Sean Reifschneider", + maintainer_email="jafo@tummy.com", + url="http://www.tummy.com/Community/software/python-memcached/", + download_url="ftp://ftp.tummy.com/pub/python-memcached/", + py_modules=["memcache"], + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: Python Software Foundation License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Topic :: Internet", + "Topic :: Software Development :: Libraries :: Python Modules", + ]) + |
