brewserverblocklist/pyproject.toml
Tobias Diekershoff bca141a120 added safe harbor for domains
One can now add a [safe harbor] section to the config file with an entry
"domains" that has a comma separated list of domains that shall never end
on the block list.
2023-01-07 22:20:50 +01:00

21 lines
579 B
TOML

[tool.poetry]
name = "brewserverblocklist"
version = "1.0.1"
description = "A python script to collect the server-wide blocklists from Friendica nodes to build a collection from trusted admin choice"
authors = ["Tobias Diekershoff"]
license = "GNU General Public License v3.0"
readme = "README.md"
[tool.poetry.scripts]
brewserverblocklist = "brewserverblocklist.brewserverblocklist:main"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"