poc/project/llmclipboard/pyproject.toml
2024-12-13 15:29:23 +08:00

17 lines
352 B
TOML

[project]
name = "llmclipboard"
version = "0.1.0"
description = "A text capture tool for saving formatted text from clipboard to markdown files."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pynput",
"pywin32",
"html2text",
"keyboard",
"configparser"
]
[project.scripts]
llmclipboard = "llmclipboard.app:main"