File size: 505 Bytes
ce847d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "oneocr"
version = "0.2.0"
description = "Reverse-engineered cross-platform OCR pipeline from Microsoft OneOCR"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
    "pillow>=12.1.0",
    "numpy>=1.26.0",
    "opencv-python-headless>=4.8.0",
    "onnxruntime>=1.16.0",
]

[project.optional-dependencies]
extract = [
    "pycryptodome>=3.19.0",
    "onnx>=1.15.0",
]
screen = [
    "mss>=9.0.0",
]
dev = [
    "pycryptodome>=3.19.0",
    "onnx>=1.15.0",
    "mss>=9.0.0",
]