-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (81 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
91 lines (81 loc) · 2.26 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "shekar"
version = "1.5.3"
description = "Simplifying Persian NLP for Modern Applications"
readme = "README.md"
license = "MIT"
authors = [{ name = "Ahmad Amirivojdan", email = "amirivojdan@gmail.com" }]
requires-python = ">=3.11"
keywords = [
"NLP",
"Natural Language Processing",
"Persian",
"Shekar",
"Text Processing",
"Machine Learning",
"Deep Learning",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
"License :: OSI Approved :: MIT License",
"Natural Language :: Persian",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=2.0.0",
"tqdm>=4.67.1",
"onnxruntime>=1.24.1",
"flashtext>=2.7",
"sentencepiece>=0.2.1",
]
[project.optional-dependencies]
viz = [
"wordcloud>=1.9.4",
"arabic-reshaper>=3.0.0",
"python-bidi>=0.6.6",
"pillow>=11.2.1",
]
all = [
"shekar[viz]"
]
[dependency-groups]
dev = [
"mkdocs-material>=9.5.49",
"mkdocs>=1.6.1",
"mkdocstrings[python]>=0.26.1",
"pytest>=8.3.4",
"ipykernel>=6.29.5",
"coverage>=7.8.0",
"termynal>=0.13.0",
"ruff>=0.12.5",
"mkdocs-static-i18n>=1.3.0",
"pre-commit>=4.5.1",
"pytest-cov>=7.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
norecursedirs = ["shekar", ".venv", ".git", "examples", "lab"]
[project.scripts]
shekar = "shekar.__main__:main"
[project.urls]
Homepage = "https://github.com/amirivojdan/shekar"
Repository = "https://github.com/amirivojdan/shekar"
Documentation = "https://lib.shekar.io"
Issues = "https://github.com/amirivojdan/shekar/issues"
Changelog = "https://github.com/amirivojdan/shekar/releases"