Kumi
14e8d44999
Enhanced the bot's functionality with several improvements: - Added YAML dependency for configuration loading - Introduced detailed logging for better monitoring - Implemented invite event handling and operator check - Updated error handling and user feedback messages - Ensured the bot ignores its own messages Increased the version to 0.1.1 to reflect these changes.
40 lines
949 B
TOML
40 lines
949 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[project]
|
|
name = "matrix-supportbot"
|
|
version = "0.1.1"
|
|
|
|
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }]
|
|
|
|
description = "Simple support chat bot for Matrix"
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
requires-python = ">=3.10"
|
|
|
|
packages = ["src/matrix_supportbot"]
|
|
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
dependencies = [
|
|
"matrix-nio>=0.24.0",
|
|
"pyyaml"
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-supportbot"
|
|
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-supportbot/issues"
|
|
|
|
[project.scripts]
|
|
supportbot = "matrix_supportbot.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/matrix_supportbot"]
|