poc/project/llmclipboard/pyproject.toml
zhukang f5849d416d feat: add modern GUI interface and cross-platform support
- Add PyQt6-based modern GUI
- Add system tray support
- Add dark/light theme support
- Refactor app into service architecture
- Update documentation with GUI features
- Add cross-platform compatibility
2025-01-15 21:10:59 +08:00

20 lines
379 B
TOML

[project]
name = "llmclipboard"
version = "0.1.0"
description = "A cross-platform rich text capture tool with GUI support"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pynput",
"pywin32",
"html2text",
"keyboard",
"configparser",
"PyQt6",
"darkdetect",
"qt-material"
]
[project.scripts]
llmclipboard = "llmclipboard.app:main"