deb-python-pymemcache/setup.py
Jon Parise 98426e831a Exclude well-known non-code paths from flake8
Also fix a minor flake8 issue in setup.py.
2017-05-05 09:36:22 -07:00

36 lines
1.0 KiB
Python

#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from pymemcache import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
readme = read('README.rst')
changelog = read('ChangeLog.rst')
setup(
name='pymemcache',
version=__version__,
author='Charles Gordon',
author_email='charles@pinterest.com',
packages=find_packages(),
install_requires=['six'],
description='A comprehensive, fast, pure Python memcached client',
long_description=readme + '\n' + changelog,
license='Apache License 2.0',
url='https://github.com/Pinterest/pymemcache',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
'License :: OSI Approved :: Apache Software License',
'Topic :: Database',
],
)