17 lines
352 B
TOML
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"
|