From 7f0dc0c0a6d612124fad6a6a1728135dd8909f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian-Samuel=20Geb=C3=BChr?= Date: Sun, 8 Jan 2023 21:36:54 +0100 Subject: [PATCH] Add pyproject.toml --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9bf2f78 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[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 ", "Julian-Samuel Gebühr "] +readme = "README.md" +packages = [{include = "mastodon_blocklist_deploy"}] + +[tool.poetry.dependencies] +python = "^3.10" +tomli = "^2.0.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"