-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.5 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
[tool.poetry]
name = "webcam-ocr"
version = "0.1.0"
description = "A Python package that provides a webcam-based GUI for real-time handwriting OCR. Capture and transcribe handwritten text directly from your webcam with support for various content types and specialized recognition."
authors = ["sjvrensburg <stefanj@mandela.ac.za>"]
readme = "README.md"
packages = [{include = "webcam_ocr", from = "src"}]
include = ["py.typed"]
repository = "https://github.com/sjvrensburg/webcam-ocr"
keywords = ["ocr", "webcam", "computer-vision", "handwriting", "gui"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications",
"Intended Audience :: Education",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video :: Capture",
"Topic :: Scientific/Engineering :: Image Recognition",
]
[tool.poetry.dependencies]
python = ">=3.12.1,<4.0"
handwriting-ocr = {git = "https://github.com/sjvrensburg/handwriting_ocr.git"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
black = "^24.10.0"
isort = "^5.12.0"
mypy = "^1.5.0"
pytest-cov = "^6.0.0"
[tool.poetry.scripts]
webcam-ocr = "webcam_ocr.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py312"]
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true