fediverse-blocklist-tool/pyproject.toml

30 lines
818 B
TOML
Raw Permalink Normal View History

2023-01-08 20:36:54 +00:00
[tool.poetry]
2023-07-26 10:43:34 +00:00
name = "fediverse-blocklist-deploy"
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>"]
readme = "README.md"
2023-07-26 10:43:34 +00:00
packages = [{include = "fediverse_blocklist_deploy"}]
license = "MIT"
2023-12-19 08:24:02 +00:00
keywords = ["fediverse", "blocklist", "mastodon", "gotosocial", "safety"]
2023-01-08 20:36:54 +00:00
[tool.poetry.dependencies]
python = "^3.10"
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-01-08 20:36:54 +00:00
[tool.poetry.scripts]
2023-07-26 10:43:34 +00:00
fediverse_blocklist_deploy = 'fediverse_blocklist_deploy.cli:cli'
2023-01-08 20:36:54 +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"