-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yotext"
version = "0.2.0"
description = "Orthographic normalization and diacritic handling for Yorùbá text"
requires-python = ">=3.9"
dependencies = []
authors = [{name = "Adedeji Makinde", email = "makindeadedeji5@gmail.com"}]
readme = "README.md"
license = "MIT"
keywords = ["yoruba", "nlp", "unicode", "diacritics", "text-normalization", "african-languages", "low-resource"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Homepage = "https://github.com/adedejimakinde/yotext"
Issues = "https://github.com/adedejimakinde/yotext/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/yotext"]
artifacts = ["src/yotext/data/*"]