diff --git a/setup.cfg b/setup.cfg index 685c009..a837e93 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,6 +23,7 @@ markers = [flake8] show-source = True max-line-length = 80 +exclude = .tox/*,.venv/*,docs/* [bumpversion:file:pymemcache/__init__.py] diff --git a/setup.py b/setup.py index 003cc6f..cfa4cdd 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,10 @@ 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__,