2023-01-08 20:36:54 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "mastodon-blocklist-deploy"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A small tool to deploy blocklist updates to a mastodon server using its API."
|
|
|
|
authors = ["Georg Krause <mail@georg-krause.net>", "Julian-Samuel Gebühr <julian-samuel@gebuehr.net>"]
|
|
|
|
readme = "README.md"
|
|
|
|
packages = [{include = "mastodon_blocklist_deploy"}]
|
2023-01-12 07:00:36 +00:00
|
|
|
license = "MIT"
|
|
|
|
keywords = ["mastodon", "blocklist", "fediverse"]
|
|
|
|
|
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
|
|
|
|
2023-01-12 07:00:36 +00:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
mastodon_blocklist_deploy = 'mastodon_blocklist_deploy.cli:cli'
|
|
|
|
|
2023-01-08 20:36:54 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|