Doc: Enhance short description
This commit is contained in:
@@ -3,6 +3,9 @@ yamllint
|
|||||||
|
|
||||||
A linter for YAML files.
|
A linter for YAML files.
|
||||||
|
|
||||||
|
yamllint does not only check for syntax validity, but for common cosmetic
|
||||||
|
conventions such as lines length, trailing spaces, indentation, etc.
|
||||||
|
|
||||||
.. image::
|
.. image::
|
||||||
https://travis-ci.org/adrienverge/yamllint.svg?branch=master
|
https://travis-ci.org/adrienverge/yamllint.svg?branch=master
|
||||||
:target: https://travis-ci.org/adrienverge/yamllint
|
:target: https://travis-ci.org/adrienverge/yamllint
|
||||||
|
|||||||
@@ -3,6 +3,9 @@ yamllint documentation
|
|||||||
|
|
||||||
A linter for YAML files.
|
A linter for YAML files.
|
||||||
|
|
||||||
|
yamllint does not only check for syntax validity, but for common cosmetic
|
||||||
|
conventions such as lines length, trailing spaces, indentation, etc.
|
||||||
|
|
||||||
Screenshot
|
Screenshot
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
|||||||
3
setup.py
3
setup.py
@@ -24,7 +24,8 @@ setup(
|
|||||||
name=APP_NAME,
|
name=APP_NAME,
|
||||||
version=APP_VERSION,
|
version=APP_VERSION,
|
||||||
author=__author__,
|
author=__author__,
|
||||||
description=APP_DESCRIPTION,
|
description=APP_DESCRIPTION.split('\n')[0],
|
||||||
|
long_description=APP_DESCRIPTION,
|
||||||
license=__license__,
|
license=__license__,
|
||||||
keywords=['yaml', 'lint', 'linter', 'syntax', 'checker'],
|
keywords=['yaml', 'lint', 'linter', 'syntax', 'checker'],
|
||||||
url='https://github.com/adrienverge/yamllint',
|
url='https://github.com/adrienverge/yamllint',
|
||||||
|
|||||||
@@ -16,7 +16,10 @@
|
|||||||
|
|
||||||
APP_NAME = 'yamllint'
|
APP_NAME = 'yamllint'
|
||||||
APP_VERSION = '0.5.2'
|
APP_VERSION = '0.5.2'
|
||||||
APP_DESCRIPTION = 'A linter for YAML files.'
|
APP_DESCRIPTION = """A linter for YAML files.
|
||||||
|
|
||||||
|
yamllint does not only check for syntax validity, but for common cosmetic
|
||||||
|
conventions such as lines length, trailing spaces, indentation, etc."""
|
||||||
|
|
||||||
__author__ = u'Adrien Vergé'
|
__author__ = u'Adrien Vergé'
|
||||||
__copyright__ = u'Copyright 2016, Adrien Vergé'
|
__copyright__ = u'Copyright 2016, Adrien Vergé'
|
||||||
|
|||||||
Reference in New Issue
Block a user