matrix-webhook/pyproject.toml

29 lines
700 B
TOML
Raw Normal View History

2021-07-13 05:28:05 -04:00
[tool.poetry]
name = "matrix-webhook"
2021-07-18 12:59:16 -04:00
version = "3.0.0"
2021-07-13 05:28:05 -04:00
description = "Post a message to a matrix room with a simple HTTP POST"
authors = ["Guilhem Saurel <guilhem.saurel@laas.fr>"]
license = "BSD-2-Clause"
readme = "README.md"
homepage = "https://github.com/nim65s/matrix-webhook"
repository = "https://github.com/nim65s/matrix-webhook.git"
2021-07-13 05:28:05 -04:00
[tool.poetry.dependencies]
2021-07-18 15:09:51 -04:00
python = "^3.8"
2021-07-13 05:28:05 -04:00
Markdown = "^3.3.4"
matrix-nio = "^0.18.3"
[tool.poetry.dev-dependencies]
httpx = "^0.18.2"
coverage = "^5.5"
black = "^21.6b0"
pydocstyle = "^6.1.1"
flake8 = "^3.9.2"
[tool.pydocstyle]
ignore = ["D203", "D204", "D212"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"