-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 791 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (24 loc) · 791 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "magiah"
version = "0.6.0"
description = "Corpus-based typo detection for Hebrew/Aramaic texts - no dictionaries, no AI"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["hebrew", "aramaic", "ocr", "typo", "proofreading", "corpus", "torah", "otzaria"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic",
"Natural Language :: Hebrew",
]
[project.scripts]
magiah = "magiah.cli:main"
[project.urls]
Homepage = "https://github.com/Nathaniel-260/magiah"
[tool.setuptools.packages.find]
include = ["magiah*"]