-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
50 lines (45 loc) · 1.04 KB
/
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
47
48
49
50
[project]
name = "screen-ocr"
version = "0.5.0"
description = "Library for processing screen contents using OCR"
readme = "README.md"
authors = [{ name = "James Stout" }]
requires-python = ">=3.11"
dependencies = ["pillow>=9.0", "rapidfuzz"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/wolfmanstout/screen-ocr"
[project.optional-dependencies]
tesseract = ["numpy", "pytesseract", "pandas", "scikit-image"]
winrt = ["winsdk"]
easyocr = ["easyocr", "numpy"]
[dependency-groups]
dev = [
"imagehash>=4.3.1",
"pytest>=8.3.3",
"scikit-image>=0.24.0",
"scikit-learn>=1.5.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501", "SIM105", "SIM116", "UP007"]