-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (98 loc) · 2.63 KB
/
pyproject.toml
File metadata and controls
105 lines (98 loc) · 2.63 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "string2string"
version = "0.0.152"
description = "String-to-String Algorithms for Natural Language Processing"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Mirac Suzgun", email = "msuzgun@cs.stanford.edu"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
]
keywords = [
"string matching",
"pattern matching",
"edit distance",
"string to string correction",
"string to string matching",
"Levenshtein edit distance",
"Hamming distance",
"Damerau-Levenshtein distance",
"Jaro-Winkler distance",
"longest common subsequence",
"longest common substring",
"dynamic programming",
"approximate string matching",
"semantic similarity",
"natural language processing",
"NLP",
"information retrieval",
"rouge",
"sacrebleu",
"bertscore",
"bartscore",
"fasttext",
"glove",
"cosine similarity",
"Smith-Waterman",
"Needleman-Wunsch",
"Hirschberg",
"Karp-Rabin",
"Knuth-Morris-Pratt",
"Boyer-Moore",
]
dependencies = [
"torch",
"numpy",
"transformers",
"datasets",
"faiss-cpu",
"bert_score",
"fasttext",
"pandas",
"joblib",
"sacrebleu",
"rouge-score",
"networkx",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.urls]
Homepage = "https://github.com/stanfordnlp/string2string"
Documentation = "https://string2string.readthedocs.io/"
Repository = "https://github.com/stanfordnlp/string2string"
Issues = "https://github.com/stanfordnlp/string2string/issues"
[tool.setuptools]
packages = ["string2string", "string2string.alignment", "string2string.distance", "string2string.metrics", "string2string.misc", "string2string.search", "string2string.similarity"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v"
[tool.coverage.run]
source = ["string2string"]
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
]