From 9f1057d3904a609dfbe196677704ccce6edf7c0e Mon Sep 17 00:00:00 2001 From: Theron Luhn Date: Wed, 6 Jan 2021 09:33:22 -0800 Subject: [PATCH] Update description. --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 944ad03..b45246d 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,12 @@ 'testing': ['pytest>=6,<7'], } +DESCRIPTION = ( + 'Bring parity to Pyramid and Celery by creating a full Pyramid ' + 'application in the Celery worker and providing a request object for each ' + 'task.' +) + with open("README.md", "r") as fh: long_description = fh.read() @@ -28,7 +34,7 @@ setup( name='pyramid-tasks', version=VERSION, - description='Celery-powered tasks for Pyramid applications.', + description=DESCRIPTION, long_description=long_description, long_description_content_type="text/markdown", url='https://github.com/luhn/pyramid-tasks/',