Skip to content

Commit

Permalink
Doc: Enhance short description
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienverge committed Jan 24, 2016
1 parent a1eb9d7 commit 376a6ed
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ yamllint

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::
https://travis-ci.org/adrienverge/yamllint.svg?branch=master
:target: https://travis-ci.org/adrienverge/yamllint
Expand Down
3 changes: 3 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ yamllint documentation

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

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
name=APP_NAME,
version=APP_VERSION,
author=__author__,
description=APP_DESCRIPTION,
description=APP_DESCRIPTION.split('\n')[0],
long_description=APP_DESCRIPTION,
license=__license__,
keywords=['yaml', 'lint', 'linter', 'syntax', 'checker'],
url='https://github.com/adrienverge/yamllint',
Expand Down
5 changes: 4 additions & 1 deletion yamllint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@

APP_NAME = 'yamllint'
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é'
__copyright__ = u'Copyright 2016, Adrien Vergé'
Expand Down

0 comments on commit 376a6ed

Please sign in to comment.