matrix-webhook/pyproject.toml

37 lines
930 B
TOML
Raw Normal View History

2021-07-13 05:28:05 -04:00
[tool.poetry]
name = "matrix-webhook"
2022-09-07 12:45:41 -04:00
version = "3.5.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
2022-08-12 05:47:48 -04:00
[tool.poetry.urls]
"changelog" = "https://github.com/nim65s/matrix-webhook/blob/master/CHANGELOG.md"
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,<0.21.0"
2022-11-29 22:22:30 -05:00
PyYAML = "^6.0"
2021-07-13 05:28:05 -04:00
[tool.poetry.dev-dependencies]
httpx = "^0.23.0"
2022-09-07 12:20:59 -04:00
black = "^22.8.0"
coverage = "^6.4.4"
2021-07-13 05:28:05 -04:00
pydocstyle = "^6.1.1"
2022-09-07 12:20:59 -04:00
flake8 = "^5.0.4"
2022-03-03 18:13:57 -05:00
pyupgrade = "^2.31.0"
2021-07-13 05:28:05 -04:00
[tool.pydocstyle]
2021-08-27 12:12:11 -04:00
ignore = ["D200", "D203", "D204", "D212"]
2021-07-13 05:28:05 -04:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2022-05-06 06:43:33 -04:00
[tool.poetry.scripts]
matrix-webhook = "matrix_webhook.__main__:main"