Kumi
8a31063bb2
This major overhaul shifts the project's focus from serving RSS feeds to reporting content within the Matrix ecosystem. Key changes include: - Renaming from Matrix-RSSBot to Matrix-ReportBot, aligning the project with its new purpose. - Removal of RSS related functionalities and incorporation of report handling capabilities, facilitating automated content reporting and monitoring in Matrix rooms. - Introduction of new dependencies and configurations specific to the report handling features. - Updating service configurations to ensure compatibility with the bot's new functionality. This transformation addresses the need for a specialized tool in the Matrix community for managing and automating content reports, enhancing moderation efficiency and response time.
46 lines
No EOL
1,003 B
TOML
46 lines
No EOL
1,003 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[project]
|
|
name = "matrix-reportbot"
|
|
version = "0.0.1"
|
|
|
|
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",
|
|
"pantalaimon",
|
|
"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"] |