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: Ibe475d90c97f6e0c09be92c211924546d7d8cca1
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2016-08-23 13:18:42 -04:00
parent 9a6a776431
commit 2dca804764
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[metadata]
name = XStatic-smart-table
summary = smart-table 1.4.13 (XStatic packaging standard)
description = smart-table 1.4.13 (XStatic packaging standard)
description-file = README.rst
maintainer = Richard Jones
maintainer-email = r1chardj0n3s@gmail.com

View File

@ -6,8 +6,8 @@ long_description = open('README.txt').read()
setup(
name='XStatic-smart-table',
summary="""smart-table 1.4.13 (XStatic packaging standard)""",
description=long_description,
description="""smart-table 1.4.13 (XStatic packaging standard)""",
long_description=long_description,
maintainer="Richard Jones",
maintainer_email='r1chardj0n3s@gmail.com',
use_scm_version=True,