matrix-webhook/pyproject.toml
2024-02-21 22:28:21 +01:00

47 lines
1.1 KiB
TOML

[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.isort]
profile = "black"
[tool.poetry]
authors = ["Guilhem Saurel <guilhem.saurel@laas.fr>"]
description = "Post a message to a matrix room with a simple HTTP POST"
homepage = "https://github.com/nim65s/matrix-webhook"
license = "BSD-2-Clause"
name = "matrix-webhook"
readme = "README.md"
repository = "https://github.com/nim65s/matrix-webhook.git"
version = "3.8.0"
[tool.poetry.dependencies]
Markdown = "^3.5.2"
matrix-nio = "^0.24"
python = "^3.8"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
coverage = "^7.4.2"
httpx = "^0.26"
ruff = "^0.2"
safety = {allow-prereleases = true, version = "^3.0.1"}
[tool.poetry.scripts]
matrix-webhook = "matrix_webhook.__main__:main"
[tool.poetry.urls]
"changelog" = "https://github.com/nim65s/matrix-webhook/blob/master/CHANGELOG.md"
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
extend-ignore = ["D203", "D213"]
extend-select = ["A", "B", "COM", "D", "EM", "EXE", "G", "I", "N", "PTH", "RET", "RUF", "UP", "W", "YTT"]
[tool.tomlsort]
all = true