summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2019-08-06 12:06:21 -0700
committerGitHub <noreply@github.com>2019-08-06 12:06:21 -0700
commit762856daf858360e4bd848fd82040f266bfdb2e2 (patch)
tree98d90106593e1887b702ce66caa877e6423e4198 /setup.cfg
parent7ad74da1c242a735bd805c836f3ddf5830b19a83 (diff)
downloadpymemcache-762856daf858360e4bd848fd82040f266bfdb2e2.tar.gz
Fix long_description string in Python packaging (#249)v2.2.2
When defining `long_description` in setup.cfg using the `file:` directive, we need to keep everything on one line. Otherwise, it will treat the value as a block of literal text.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 867747e..a0b4e70 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,8 +4,7 @@ version = attr: pymemcache.__version__
author = Charles Gordon
author_email = charles@pinterest.com
description = "A comprehensive, fast, pure Python memcached client"
-long_description =
- file: README.rst, ChangeLog.rst
+long_description = file: README.rst, ChangeLog.rst
long_description_content_type = text/x-rst
license = Apache License 2.0
url = https://github.com/pinterest/pymemcache