diff options
| author | Sean Reifschneider <jafo@tummy.com> | 2014-06-07 15:27:05 -0600 |
|---|---|---|
| committer | Sean Reifschneider <jafo@tummy.com> | 2014-06-07 15:27:05 -0600 |
| commit | 45403325e0249ff0f61d6ae449a7daeeb7e852e5 (patch) | |
| tree | 6188eb2f35d20b48e8bdccdbbe199698d88eceef /setup.py | |
| parent | e268a8b0cae77a9cf669e5e51d9216c6d5881871 (diff) | |
| download | python-memcached-45403325e0249ff0f61d6ae449a7daeeb7e852e5.tar.gz | |
Resolving conflicts from cabrera-py33_fixes.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,10 +1,10 @@ #!/usr/bin/env python -from setuptools import setup -import memcache +from setuptools import setup # noqa + setup(name="python-memcached", - version=memcache.__version__, + version="1.53", description="Pure python memcached client", long_description=open("README.md").read(), author="Evan Martin", @@ -14,6 +14,7 @@ setup(name="python-memcached", url="http://www.tummy.com/Community/software/python-memcached/", download_url="ftp://ftp.tummy.com/pub/python-memcached/", py_modules=["memcache"], + install_requires=open('requirements.txt').read().split(), classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -31,4 +32,3 @@ setup(name="python-memcached", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4" ]) - |
