-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
49 lines (44 loc) · 1.47 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pyLanguagetool"
version = "0.10.1"
authors = [
{ name = "Lukas Winkler", email = "[email protected]" }
]
license = { text = "MIT" }
description = "A python library and CLI for the LanguageTool JSON API"
keywords = ["languagetool", "spell", "grammar", "checker"]
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"colorama>=0.4.1",
"configargparse>=0.14.0",
"requests>=2.22.0",
]
[project.urls]
Documentation = "https://pylanguagetool.lw1.at/"
Source = "https://github.com/Findus23/pyLanguagetool/"
Issues = "https://github.com/Findus23/pyLanguagetool/issues"
[project.optional-dependencies]
dev = ["pytest", "sphinx"]
optional = ["beautifulsoup4", "markdown2", "docutils"]
[project.scripts]
pylanguagetool = "pylanguagetool.cli:main"
[tool.setuptools]
py-modules = ["pylanguagetool"]