matrix-reportbot/pyproject.toml
Kumi 4e1e15e3cc
fix: bugfix release v0.0.3, fix invite handling
This update bumps the project version to 0.0.3 and modifies the bot's behavior to handle room invites asynchronously, improving the efficiency of joining rooms on startup. By adopting `await` for `accept_pending_invites`, the bot can now manage invites more responsively, potentially enhancing user experience during high-volume invite periods.

This change reflects our commitment to continuous improvement, addressing scalability and responsiveness as the bot becomes integrated into larger ecosystems or faces more demanding operational contexts.

No issues explicitly referenced, but this enhancement is part of ongoing efforts to refine the bot's functionality and reliability.
2024-05-18 15:38:22 +02:00

45 lines
No EOL
984 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "matrix-reportbot"
version = "0.0.3"
authors = [
{ name="Private.coffee Team", email="support@private.coffee" },
]
description = "Simple content report subscription bot for Matrix."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
packages = [
"src/matrix_reportbot"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matrix-nio",
"setuptools",
"markdown2",
]
[project.urls]
"Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-reportbot"
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-reportbot/issues"
[project.scripts]
reportbot = "matrix_reportbot.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/matrix_reportbot"]