-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.73 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
[project]
name = "DAWG2"
version = "0.13.1"
requires-python = ">= 3.8"
description = "Fast and memory efficient DAWG (DAFSA) for Python"
readme = "README.md"
authors = [
{name = "Mikhail Korobov", email = "[email protected]"}
]
maintainers = [
{name = "insolor", email = "[email protected]"}
]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Cython",
"Programming Language :: Python",
"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 :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing :: Linguistic",
]
[project.urls]
Homepage = "https://github.com/pymorphy2-fork/DAWG/"
Changelog = "https://github.com/pymorphy2-fork/DAWG/blob/master/CHANGES.md"
[build-system]
requires = ["setuptools", "wheel", "Cython"]
[tool.coverage.run]
plugins = ["Cython.Coverage"]
source = ["src", "tests"]
omit = ["bench/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"@(abc\\.)?abstractmethod",
]
[tool.black]
line-length = 120
extend-exclude = "docs"
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
select = ["E", "F", "UP"]
ignore = ["UP015"]
unfixable = ["F401"]
target-version = "py38"
exclude = ["docs"]