-
Notifications
You must be signed in to change notification settings - Fork 164
/
pyproject.toml
89 lines (72 loc) · 2.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "pyspellchecker"
dynamic = ["version"]
authors = [{ name = "Tyler Barrus", email = "[email protected]" }]
license = { text = "MIT" }
description = "Pure python spell checker based on work by Peter Norvig"
keywords = [
"python",
"spelling",
"natural language processing",
"nlp",
"typo",
"checker",
]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
]
requires-python = ">=3.7"
[tool.setuptools.dynamic]
version = { attr = "spellchecker.__version__" }
[project.urls]
homepage = "https://github.com/barrust/pyspellchecker"
bug-tracker = "https://github.com/barrust/pyspellchecker/issues"
documentation = "https://pyspellchecker.readthedocs.io/"
[tool.poetry]
packages = [{ include = "spellchecker" }]
[tool.poetry.dev-dependencies]
pre-commit = { version = ">=2.18.1", python = "^3.6.1" }
black = { version = "^20.8b1", python = "^3.6" }
isort = { version = "^5.6.4", python = "^3.6" }
pytest = { version = "^6.1.1", python = "^3.6" }
flake8 = { version = "^3.6.0", python = "^3.6" }
[tool.setuptools.packages.find]
include = ["spellchecker", "spellchecker.*"]
[tool.flit.module]
name = "spellchecker"
[tool.distutils.bdist_wheel]
universal = 0
[tool.pep8]
max-line-length = 120
[tool.pycodestyle]
max-line-length = 120
[tool.flake8]
max-line-length = 120
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ['py37']
include = '\.pyi?$'
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
max-args = 6
[build-system]
requires = ["setuptools>=61.2.0", "wheel"]
build-backend = "setuptools.build_meta"