From b8759d3e5dc81a80449506ee34cf7c5269f09d8c Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Sat, 27 Aug 2016 08:15:41 +1000 Subject: [PATCH] Fix description metadata There doesn't seem to be a "summary" option, but "description" and "long_description" are different. Update the metadata to avoid warnings about the unknown "summary" and so that when the release announce script asks for the package description it gets the one line version instead of the longer one. Change-Id: Ibe3a14d76d07de54c250cf6e286af5a40e4b6456 --- setup.cfg | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0b6e760..02241a5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = XStatic-Angular-Bootstrap -summary = Angular-Bootstrap 0.11.0 (XStatic packaging standard) +description = Angular-Bootstrap 0.11.0 (XStatic packaging standard) description-file = README.rst maintainer = Maxime Vidori maintainer-email = maxime.vidori@enovance.com diff --git a/setup.py b/setup.py index 233b5f4..3bcb005 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ long_description = open('README.txt').read() setup( name='XStatic-Angular-Bootstrap', - summary="""Angular-Bootstrap 0.11.0 (XStatic packaging standard)""", - description=long_description, + description="""Angular-Bootstrap 0.11.0 (XStatic packaging standard)""", + long_description=long_description, maintainer="Maxime Vidori", maintainer_email='maxime.vidori@enovance.com', use_scm_version=True,