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
This commit is contained in:
Richard Jones 2016-08-27 08:15:41 +10:00
parent 7a2e736846
commit b8759d3e5d
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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,