2023-01-08 20:36:54 +00:00
|
|
|
[tool.poetry]
|
2023-12-19 11:42:33 +00:00
|
|
|
name = "fediverse-blocklist-tool"
|
2023-01-08 20:36:54 +00:00
|
|
|
version = "0.1.0"
|
2023-12-19 08:24:02 +00:00
|
|
|
description = "A small tool to export, compareof merge and deploy blocklists of a fediverse server"
|
2023-01-08 20:36:54 +00:00
|
|
|
authors = ["Georg Krause <mail@georg-krause.net>", "Julian-Samuel Gebühr <julian-samuel@gebuehr.net>"]
|
2023-12-21 09:27:49 +00:00
|
|
|
maintainers = ["Julian-Samuel Gebühr <julian-samuel@gebuehr.net>"]
|
2023-01-08 20:36:54 +00:00
|
|
|
readme = "README.md"
|
2023-12-19 11:42:33 +00:00
|
|
|
packages = [{include = "fediverse_blocklist_tool"}]
|
2023-01-12 07:00:36 +00:00
|
|
|
license = "MIT"
|
2023-12-19 08:24:02 +00:00
|
|
|
keywords = ["fediverse", "blocklist", "mastodon", "gotosocial", "safety"]
|
2023-01-12 07:00:36 +00:00
|
|
|
|
2023-01-08 20:36:54 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-12-21 09:27:49 +00:00
|
|
|
python = "^3.11"
|
2023-01-09 07:41:28 +00:00
|
|
|
requests = "^2.28.1"
|
|
|
|
rich = "^13.0.1"
|
2023-01-09 12:10:40 +00:00
|
|
|
toml = "^0.10.2"
|
2023-12-21 09:28:25 +00:00
|
|
|
validators = "*"
|
2023-01-08 20:36:54 +00:00
|
|
|
|
2023-01-12 07:00:36 +00:00
|
|
|
[tool.poetry.scripts]
|
2023-12-19 11:42:33 +00:00
|
|
|
fbt = 'fediverse_blocklist_tool.cli:cli'
|
2023-01-12 07:00:36 +00:00
|
|
|
|
2023-01-08 20:36:54 +00:00
|
|
|
|
2023-07-26 12:29:08 +00:00
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
pytest = "^7.4.0"
|
|
|
|
pytest-cov = "^4.1.0"
|
|
|
|
requests-mock = "^1.11.0"
|
|
|
|
|
2023-01-08 20:36:54 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|