-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.19 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
[project]
authors = [{ "name" = "Michael Bianco", "email" = "mike@mikebian.co" }]
name = "listmonk-newsletter"
version = "0.1.0"
description = "Generate a newsletter digest from an rss feed and send it to a listmonk instance"
readme = "README.md"
keywords = ["listmonk", "newsletter", "rss", "feed", "auto-release"]
urls = { "Repository" = "https://github.com/iloveitaly/listmonk-newsletter" }
requires-python = ">=3.14"
dependencies = [
"apscheduler==3.11.3",
"backoff == 2.2.1",
"click==8.4.2",
"css-inline==0.21.0",
"dateparser==1.4.1",
"feedparser==6.0.14",
"funcy-pipe==0.14.0",
"html2text == 2025.4.15",
"jinja2 == 3.1.6",
"lxml==6.1.1",
"markdown>=3.10.3",
"pydantic-ai-slim[google]>=2.21.0",
"python-decouple-typed == 3.11.0",
"requests==2.34.2",
"structlog-config>=0.14.0",
"tzdata>=2026.3",
"whenever>=0.10.3",
]
[project.scripts]
listmonk-newsletter = "listmonk_newsletter:cli"
[build-system]
requires = ["uv_build>=0.12.0,<0.13.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
# avoids the src/ directory structure
module-root = ""
[dependency-groups]
dev = ["beautiful-traceback>=0.2.0", "djlint>=1.43.1", "ipdb>=0.13.13"]