blob: df6adeb52fbd5e736e144c576b7c5237d16652d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[project]
name = "tldr"
version = "0.1.0"
description = "Download and summarize webpages using LLMs"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4>=4.14.3",
"claude-code-sdk>=0.0.25",
"click>=8.3.1",
"html2text>=2025.4.15",
"httpx>=0.28.1",
"multillm-workspace",
"nodriver>=0.48.1",
]
[project.scripts]
tldr = "tldr.cli:main"
[tool.uv]
package = true
[tool.uv.sources]
multillm-workspace = { git = "https://git.sinitax.com/sinitax/multillm.git" }
|