From b85e8594923a1f99073f79b8516d0160ed643dfe Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Fri, 29 Dec 2023 15:04:22 +0000 Subject: [PATCH] setup.cfg improvement --- RELEASE.rst | 2 +- setup.cfg | 9 ++------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/RELEASE.rst b/RELEASE.rst index 208b3d3..6336820 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -22,5 +22,5 @@ Post release * Add new section 'Unreleased' section at top of CHANGES.rst -* Bump version in mailer/__init__.py (to what it is most likely to be next), and in setup.py +* Bump version in mailer/__init__.py (to what it is most likely to be next) including ``.dev1``. diff --git a/setup.cfg b/setup.cfg index 5be6e11..8257a20 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,13 +2,8 @@ name = django-mailer version = attr: mailer.__version__ description = A reusable Django app for queuing the sending of email -long_description = ``django-mailer`` is a reusable Django app for queuing the sending of email. - It works by storing email in the database for later sending. - The main reason for doing this is that for many apps, the database will be - much more reliable and faster than other email sending backends which require - 3rd party services e.g. SMTP or an HTTP API. By storing and sending later, we can - return succeed immediately, and then attempt actual email sending in the background, - with retries if needed. +long_description = file: README.rst +long_description_content_type = text/x-rst author = Pinax Team author_email = developers@pinaxproject.com url = http://github.com/pinax/django-mailer/