-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1012 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (34 loc) · 1012 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "winocr"
version = "0.1.0"
description = "A small Windows OCR CLI and Python wrapper built on Windows.Media.Ocr."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "Win OCR contributors" }]
keywords = ["ocr", "windows", "winrt", "windows-media-ocr"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: C#",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Capture :: Scanners",
"Topic :: Text Processing",
]
dependencies = [
"Pillow>=10.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.5"]
[project.scripts]
winocr = "winocr.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py39"