#!/usr/bin/env python from setuptools.depends import get_module_constant from setuptools import setup # noqa version = get_module_constant('memcache', '__version__') setup( name="python-memcached", version=version, description="Pure python memcached client", long_description=open("README.md").read(), author="Evan Martin", author_email="martine@danga.com", maintainer="Sean Reifschneider", maintainer_email="jafo@tummy.com", url="https://github.com/linsomniac/python-memcached", download_url=( "https://github.com/linsomniac/python-memcached/releases/download/" "{0}/python-memcached-{0}.tar.gz".format(version) ), py_modules=["memcache"], install_requires=open('requirements.txt').read().split(), 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", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", ], )