-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
66 lines (60 loc) · 1.93 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
[build-system]
requires = ["maturin>=1.3,<2.0"]
build-backend = "maturin"
[project]
name = "flashtext2"
requires-python = ">=3.8"
version = "1.1.0"
description = "A package for extracting keywords from large text very quickly (much faster than regex and the original flashtext package"
keywords = ["nlp", "string", "regex", "text-processing", "extracting-keywords", "keyword-extraction", "flashtext", "flashtext2", "rust"]
authors = [
{ name = "Shneor E.", email = "[email protected]" },
]
license = "MIT"
readme = "README.md"
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/shner-elmo/flashtext2"
source = "https://github.com/shner-elmo/flashtext2"
repository = "https://github.com/shner-elmo/flashtext2"
documentation = "https://github.com/shner-elmo/flashtext2/blob/master/README.md"
"Bug Reports" = "https://github.com/shner-elmo/flashtext2/issues"
[project.optional-dependencies]
test = [
"coverage>=7.2.1",
"pytest>=7.2.1",
]
benchmark = [
"flashtext>=2.7",
"pandas>=2.0.3",
"matplotlib>=3.7.2",
]
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.coverage.report]
# skip_covered = true
# show_missing = true
exclude_lines = [
"pragma: no cover",
"@overload",
"except ImportError",
"if TYPE_CHECKING:",
"from typing_extensions import ",
]