29 lines
532 B
TOML
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",
|
|
]
|