Skip to content

Commit c99fd89

Browse files
committed
docs: added classifiers/keywors in pyproject.toml, added badges in README and updated LT version in README
1 parent c7ade98 commit c99fd89

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# `language_tool_python`: a grammar checker for Python 📝
22

3-
![language tool python on pypi](https://badge.fury.io/py/language-tool-python.svg)
3+
[![language tool python on pypi](https://badge.fury.io/py/language-tool-python.svg)](https://pypi.org/project/language-tool-python/)
4+
[![Test with PyTest](https://github.com/jxmorris12/language_tool_python/workflows/Test%20with%20PyTest/badge.svg)](https://github.com/jxmorris12/language_tool_python/actions)
5+
[![Downloads](https://static.pepy.tech/badge/language-tool-python)](https://pepy.tech/project/language-tool-python)
6+
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE)
7+
[![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/jxmorris12/language_tool_python/pulls)
48

5-
![Test with PyTest](https://github.com/jxmorris12/language_tool_python/workflows/Test%20with%20PyTest/badge.svg)
6-
7-
Current LanguageTool version: **6.7-SNAPSHOT**
9+
Current LanguageTool version: **6.8-SNAPSHOT**
810

911
This is a Python wrapper for [LanguageTool](https://languagetool.org). LanguageTool is open-source grammar tool, also known as the spellchecker for OpenOffice. This library allows you to make to detect grammar errors and spelling mistakes through a Python script or through a command-line interface.
1012

pyproject.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@ authors = [
1212
maintainers = [
1313
{ name = "mdevolde", email = "martin.devolder2@gmail.com" }
1414
]
15+
classifiers = [
16+
"Programming Language :: Python :: 3",
17+
"Programming Language :: Python :: 3.9",
18+
"Programming Language :: Python :: 3.10",
19+
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
23+
"Operating System :: OS Independent",
24+
"Topic :: Software Development :: Libraries :: Python Modules",
25+
"Topic :: Text Processing :: Linguistic",
26+
]
27+
keywords = ["python", "nlp", "grammar", "languagetool", "grammar-checker", "spellchecker", "grammar-parser"]
1528
urls = { Repository = "https://github.com/jxmorris12/language_tool_python.git" }
1629

1730
dependencies = [

0 commit comments

Comments
 (0)