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: I83c5b3551f26a1a3cc2d8878e9cf1ed582cd2b9f
This commit is contained in:
parent
7c98c606c2
commit
55b99c03ab
@ -1,6 +1,6 @@
|
||||
[metadata]
|
||||
name = XStatic-Angular
|
||||
summary = Angular 1.5.8 (XStatic packaging standard)
|
||||
description = Angular 1.5.8 (XStatic packaging standard)
|
||||
description-file = README.rst
|
||||
maintainer = Rob Cresswell
|
||||
maintainer-email = robert.cresswell@outlook.com
|
||||
|
4
setup.py
4
setup.py
@ -6,8 +6,8 @@ long_description = open('README.txt').read()
|
||||
|
||||
setup(
|
||||
name='XStatic-Angular',
|
||||
summary="""Angular 1.5.8 (XStatic packaging standard)""",
|
||||
description=long_description,
|
||||
description="""Angular 1.5.8 (XStatic packaging standard)""",
|
||||
long_description=long_description,
|
||||
maintainer="Rob Cresswell",
|
||||
maintainer_email='robert.cresswell@outlook.com',
|
||||
use_scm_version=True,
|
||||
|
Loading…
x
Reference in New Issue
Block a user