-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
48 lines (42 loc) · 1.16 KB
/
pyproject.toml
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
[tool.black]
line-length = 100
target-version = ['py39']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.poetry]
name = "trackthenews"
version = "0.3"
description = "Monitor RSS feeds for keywords and act on matching results. A special project of the Freedom of the Press Foundation."
authors = ["Freedom of the Press Foundation <[email protected]>"]
maintainers = [
"Harris Lapiroff <[email protected]>",
"Erik Moeller <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/freedomofpress/trackthenews"
include = ["trackthenews/fonts/*"]
[tool.poetry.dependencies]
python = "~3.11"
feedparser = "^6.0"
future = "^0.17.1"
html2text = "2018.1.9"
Pillow = "^10.0.0"
pyaml = "^18.11.0"
readability-lxml = "^0.8.1"
requests = "^2.31.0"
tweepy = "^4.14.0"
"Mastodon.py" = "^1.8.1"
lxml = {extras = ["html-clean"], version = "^5.3.0"}
# For blocklist implementers
beautifulsoup4 = "^4.12.3"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
[tool.poetry.scripts]
trackthenews = 'trackthenews:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"