-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (84 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (84 loc) · 1.87 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
92
93
94
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lipi-aparsoft"
version = "1.0.9"
description = "Legacy Hindi font (KrutiDev/Chanakya) to Unicode Devanagari toolkit with PDF splitting"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Aparsoft Private Limited", email = "info@aparsoft.com" },
]
keywords = [
"pdf",
"split",
"hindi",
"krutidev",
"chanakya",
"devanagari",
"unicode",
"edtech",
"indic",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Text Processing",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Natural Language :: Hindi",
]
requires-python = ">=3.9"
dependencies = [
"pypdf>=4.0.0",
]
[project.optional-dependencies]
flask = [
"Flask>=3.0.0",
"watchdog>=3.0.0",
"tqdm>=4.60.0",
"requests>=2.31.0",
"werkzeug>=3.0.0",
]
symspell = [
"symspellpy>=6.7.7",
]
lm = [
"kenlm>=0.2.0",
"requests>=2.31.0",
]
ml = [
"transformers>=4.40.0",
"torch>=2.0.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=24.0",
"ruff>=0.4.0",
"symspellpy>=6.7.7",
]
[tool.setuptools.package-data]
lipi = ["data/*.txt", "data/*.bin", "data/*.arpa"]
[project.scripts]
lipi = "lipi.cli:main"
[project.urls]
Homepage = "https://aparsoft.com"
Repository = "https://github.com/aparsoft/lipi"
"Bug Tracker" = "https://github.com/aparsoft/lipi/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.ruff]
line-length = 100
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]