-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 996 Bytes
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
[build-system]
requires = ["setuptools", "wheel", "Cython"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.ruff]
exclude = ["build", "dist", ".tox"]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
python_files = ["test_*.py"]
[project]
name = "amharic-tokenizer"
version = "0.2.6"
description = "Amharic tokenizer with BPE-like merges over decomposed fidel (Cython)"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [ { name = "Sefineh Tesfa", email = "sefinehtesfa34@gmail.com" } ]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Topic :: Text Processing :: Linguistic"
]
dependencies = []
[project.urls]
Homepage = "https://github.com/sefineh-ai/AMH-Tokenizer"
Issues = "https://github.com/sefineh-ai/AMH-Tokenizer/issues"
[project.scripts]
amh-tokenizer = "amharic_tokenizer.cli:main"