File: pyproject.toml

package info (click to toggle)
rss2email 1%3A3.14-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,260 kB
  • sloc: python: 2,565; xml: 156; sh: 6; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 460 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool.poetry]
name = "rss2email"
version = "3.12.2"
description = "Forward RSS feeds to your email address"
authors = ["Your Name <you@example.com>"]
license = "GPL-2.0-only"

[tool.poetry.dependencies]
python = "^3.6"
feedparser = ">=6.0.5"
html2text = ">=2020.1.16"

[tool.poetry.dev-dependencies]
update-copyright = ">=0.6.2"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"

[tool.poetry.scripts]
r2e = "rss2email.main:run"