refactor: rename project to matrix-applicationbot

Update project name and metadata from matrix-supportbot to
matrix-applicationbot to reflect new functionality of handling
space application requests. This includes changes in package
names, author information, and repository URLs to align with
the project's new identity. This helps avoid confusion and
provides clarity on the bot's purpose.
This commit is contained in:
Kumi 2024-11-08 07:55:29 +01:00
parent 97cd4aeb2f
commit 64b4a28cef
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 9 additions and 9 deletions

View file

@ -5,7 +5,7 @@
[![PyPI](https://shields.private.coffee/pypi/v/matrix-applicationbot)](https://pypi.org/project/matrix-applicationbot/) [![PyPI](https://shields.private.coffee/pypi/v/matrix-applicationbot)](https://pypi.org/project/matrix-applicationbot/)
[![PyPI - Python Version](https://shields.private.coffee/pypi/pyversions/matrix-applicationbot)](https://pypi.org/project/matrix-applicationbot/) [![PyPI - Python Version](https://shields.private.coffee/pypi/pyversions/matrix-applicationbot)](https://pypi.org/project/matrix-applicationbot/)
[![PyPI - License](https://shields.private.coffee/pypi/l/matrix-applicationbot)](https://pypi.org/project/matrix-applicationbot/) [![PyPI - License](https://shields.private.coffee/pypi/l/matrix-applicationbot)](https://pypi.org/project/matrix-applicationbot/)
[![Latest Git Commit](https://shields.private.coffee/gitea/last-commit/privatecoffee/matrix-applicationbot?gitea_url=https://git.private.coffee)](https://git.private.coffee/privatecoffee/matrix-applicationbot) [![Latest Git Commit](https://shields.private.coffee/gitea/last-commit/kumi/matrix-applicationbot?gitea_url=https://git.private.coffee)](https://git.private.coffee/kumi/matrix-applicationbot)
*Note:* This project is a fork of [matrix-supportbot](https://git.private.coffee/privatecoffee/matrix-supportbot) to extend its functionality by handling room join applications. This README needs to be updated to reflect the changes. *Note:* This project is a fork of [matrix-supportbot](https://git.private.coffee/privatecoffee/matrix-supportbot) to extend its functionality by handling room join applications. This README needs to be updated to reflect the changes.

View file

@ -6,17 +6,17 @@ build-backend = "hatchling.build"
allow-direct-references = true allow-direct-references = true
[project] [project]
name = "matrix-supportbot" name = "matrix-applicationbot"
version = "0.1.2" version = "0.1.2"
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }] authors = [{ name = "Kumi", email = "kumi@private.coffee" }]
description = "Simple support chat bot for Matrix" description = "Simple space application chat bot for Matrix"
readme = "README.md" readme = "README.md"
license = { file = "LICENSE" } license = { file = "LICENSE" }
requires-python = ">=3.10" requires-python = ">=3.10"
packages = ["src/matrix_supportbot"] packages = ["src/matrix_applicationbot"]
classifiers = [ classifiers = [
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
@ -30,11 +30,11 @@ dependencies = [
] ]
[project.urls] [project.urls]
"Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-supportbot" "Homepage" = "https://git.private.coffee/kumi/matrix-applicationbot"
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-supportbot/issues" "Bug Tracker" = "https://git.private.coffee/kumi/matrix-applicationbot/issues"
[project.scripts] [project.scripts]
supportbot = "matrix_supportbot.main:main" applicationbot = "matrix_applicationbot.main:main"
[tool.hatch.build.targets.wheel] [tool.hatch.build.targets.wheel]
packages = ["src/matrix_supportbot"] packages = ["src/matrix_applicationbot"]