matrix-double-puppeting-bridge/pyproject.toml

28 lines
891 B
TOML
Raw Normal View History

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "matrix-double-puppeting-bridge"
version = "0.0.1"
authors = [
{ name="Kumi Mitterer", email="matrix-double-puppeting-bridge@kumi.email" },
]
description = "A simple demo bridge that demonstrates how to use the mautrix library to create a double-puppeting bridge."
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 = [
"mautrix",
"pyyaml",
]
[project.urls]
"Homepage" = "https://git.private.coffee/kumi/matrix-double-puppeting-bridge"
"Bug Tracker" = "https://git.private.coffee/kumi/matrix-double-puppeting-bridge/issues"
"Source Code" = "https://git.private.coffee/kumi/matrix-double-puppeting-bridge"