-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (61 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "minigist"
description = "A tool that generates concise summaries for you Miniflux feeds."
readme = "README.md"
license-files = ["LICENSE"]
requires-python = ">=3.13"
version = "0.9.6"
authors = [
{name = "eikendev"},
]
maintainers = [
{name = "eikendev"},
]
keywords = ["miniflux", "rss", "feed", "ai", "summarization", "cli"]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
]
dependencies = [
"apprise>=1.9.3",
"beautifulsoup4>=4.14.3",
"click>=8.1.8",
"httpx>=0.28.1",
"httpx-retries>=0.4.5",
"markdown>=3.8",
"miniflux>=1.1.3",
"nh3>=0.2.21",
"openai>=1.76.0",
"pydantic>=2.11.3",
"pyyaml>=6.0.2",
"structlog>=25.3.0",
"tenacity>=9.1.2",
"trafilatura>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/eikendev/minigist"
[project.scripts]
minigist = "minigist.cli:cli"
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = { find = { where = ["."], include = ["minigist*"] } }
[tool.ruff]
line-length = 120
lint.select = ["F", "E", "W", "B", "I", "SIM", "UP", "N", "FURB"]
[tool.pyrefly]
project-includes = ["**/*"]
project-excludes = ["**/*venv/**/*"]
[dependency-groups]
dev = [
"bandit>=1.9.4",
"pyrefly>=1.0.0",
"pytest>=8.3.5",
"ruff>=0.16",
"types-markdown>=3.8.0.20250415",
"types-pyyaml>=6.0.12.20250402",
]