Add pyproject.toml

blocklist_example
Julian-Samuel Gebühr 2023-01-08 21:36:54 +01:00
parent 78a7ea185a
commit 7f0dc0c0a6
1 changed files with 16 additions and 0 deletions

16
pyproject.toml Normal file
View File

@ -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 <mail@georg-krause.net>", "Julian-Samuel Gebühr <julian-samuel@gebuehr.net>"]
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"