Skip to content

Commit 67cad0f

Browse files
committed
Add long description in setup.py
1 parent 3bd81f2 commit 67cad0f

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,23 @@
2222
from msgcheck.msgcheck import msgcheck_version
2323

2424
DESCRIPTION = 'Perform various checks on gettext files.'
25+
LONG_DESCRIPTION = """
26+
MsgCheck performs various checks on gettext files:
27+
28+
* compilation (with command `msgfmt -c`)
29+
* for each translation:
30+
- number of lines in translated strings
31+
- whitespace at beginning/end of strings
32+
- trailing whitespace at end of lines inside strings
33+
- punctuation at end of strings
34+
- spelling (messages and translations).
35+
"""
2536

2637
setup(
2738
name='msgcheck',
2839
version=msgcheck_version(),
2940
description=DESCRIPTION,
30-
long_description=DESCRIPTION,
41+
long_description=LONG_DESCRIPTION,
3142
author='Sébastien Helleu',
3243
author_email='[email protected]',
3344
url='https://github.com/flashcode/msgcheck',

0 commit comments

Comments
 (0)