Files
tooling/pyproject.toml
T
dingfeng.wong 5f0d1d63de add ocr
2025-07-22 01:17:49 +08:00

29 lines
532 B
TOML

[project]
name = "tooling"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "dingfeng.wong", email = "dingfeng.wong@okg.com" }
]
requires-python = ">=3.11"
dependencies = [
"pillow>=11.1.0",
"pyperclip>=1.9.0",
"pytesseract>=0.3.13",
"typer>=0.12.0",
"rich>=13.0.0",
]
[project.scripts]
ocr-screenshot = "tooling.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"open-webui>=0.6.5",
]