-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
48 lines (40 loc) · 1008 Bytes
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=60",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "ocr_tamil"
version = "0.3.6"
description = "Python Tamil OCR package"
readme = "README.md"
authors = [{ name = "Gnana Prasath", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["ocr", "ocr tamil", "tamil", "indian ocr", "tamil ocr"]
dependencies = [
"torch>=2",
"torchvision>=0.15.1",
"Pillow>=10.0.0",
"opencv-python",
"Open-Tamil",
"numpy",
"pandas",
"gdown",
"pytorch-lightning==1.9.5",
"matplotlib",
"scikit-image",
"timm"
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/gnana70/tamil_ocr"
[project.scripts]
ocr_tamil = "tamil_ocr.ocr_tamil:main"