-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.44 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
[project]
name = "sentencex"
version = "1.0.13"
requires-python = ">=3.10"
description = "Sentence segmenter that supports ~300 languages"
authors = [{name = "Santhosh Thottingal", email = "[email protected]"}]
license = "MIT"
keywords = [
"NLP",
"Natural Language Processing",
"Tokenizer"
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-cov>=2.0",
]
dev = [
"ruff>=0.1.0",
"pytest>=6.0",
"pytest-cov>=2.0",
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "sentencex"
sdist-include = ["README.md", "LICENSE"]
[project.urls]
Homepage = "https://github.com/wikimedia/sentencex"
Issues = "https://github.com/wikimedia/sentencex/issues"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]