poc/project/llmclipboard/pyproject.toml
zhukang b2494d439b feat: add intelligent document processing
- Add DocumentProcessor class for smart content analysis
- Implement automatic title generation
- Add automatic tagging system
- Add intelligent categorization
- Add metadata support with YAML front matter
- Update documentation with new features
- Add jieba dependency for Chinese text processing
2025-01-15 21:34:42 +08:00

21 lines
392 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",
"jieba"
]
[project.scripts]
llmclipboard = "llmclipboard.app:main"