From 63350f281989be065a62cec386ef4f7cf667316a Mon Sep 17 00:00:00 2001 From: Seth House Date: Wed, 11 Oct 2017 15:43:21 -0600 Subject: [PATCH] PyPI no longer allows multi-line descriptions --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c38a7bc..cc25635 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup_kwargs = { 'name': 'salt-pepper', - 'description': __doc__, + 'description': __doc__.strip(), 'author': 'Seth House', 'author_email': 'shouse@saltstack.com', 'url': 'http://saltstack.com',