matrix-redactorbot/pyproject.toml

27 lines
895 B
TOML
Raw Normal View History

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "matrix_redactorbot"
version = "0.1.5"
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }]
description = "A simple bot to redact media and links sent by unprivileged users in Matrix rooms."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["matrix-nio", "pyyaml"]
[project.scripts]
redactorbot = "matrix_redactorbot.main:main"
[project.urls]
"Homepage" = "https://git.private.coffee/privatecoffee/matrix-redactorbot"
"Bug Tracker" = "https://git.private.coffee/privatecoffee/matrix-redactorbot/issues"
"Source Code" = "https://git.private.coffee/privatecoffee/matrix-redactorbot"