-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "sum-cli"
description = "CLI tool to extract and summarize text from a given URL. Quickly get the key points of any webpage without reading the full content."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"langchain>=0.3.20",
"langchain-chroma>=0.2.2",
"langchain-ollama>=0.2.3",
"lxml[html-clean]>=5.3.1",
"newspaper3k>=0.2.8",
"requests>=2.32.3",
]
dynamic = ["version"]
license = { text = "MIT" }
keywords = ["CLI", "summarize", "text extraction", "web scraping"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/dmitriiweb/sum-cli"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.mypy]
files = ["sum_cli/get_text_article"]
disable_error_code = ["import-untyped"]
[tool.setuptools.dynamic]
version = {attr = "sum_cli.__version__"}
[dependency-groups]
dev = ["mypy>=1.15.0", "ruff>=0.9.10"]
[project.scripts]
sum-cli = "sum_cli.cli:main"