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:
parent
97cd4aeb2f
commit
64b4a28cef
2 changed files with 9 additions and 9 deletions
|
@ -5,7 +5,7 @@
|
|||
[![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 - 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.
|
||||
|
||||
|
|
|
@ -6,17 +6,17 @@ build-backend = "hatchling.build"
|
|||
allow-direct-references = true
|
||||
|
||||
[project]
|
||||
name = "matrix-supportbot"
|
||||
name = "matrix-applicationbot"
|
||||
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"
|
||||
license = { file = "LICENSE" }
|
||||
requires-python = ">=3.10"
|
||||
|
||||
packages = ["src/matrix_supportbot"]
|
||||
packages = ["src/matrix_applicationbot"]
|
||||
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
|
@ -30,11 +30,11 @@ dependencies = [
|
|||
]
|
||||
|
||||
[project.urls]
|
||||
"Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-supportbot"
|
||||
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-supportbot/issues"
|
||||
"Homepage" = "https://git.private.coffee/kumi/matrix-applicationbot"
|
||||
"Bug Tracker" = "https://git.private.coffee/kumi/matrix-applicationbot/issues"
|
||||
|
||||
[project.scripts]
|
||||
supportbot = "matrix_supportbot.main:main"
|
||||
applicationbot = "matrix_applicationbot.main:main"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/matrix_supportbot"]
|
||||
packages = ["src/matrix_applicationbot"]
|
||||
|
|
Loading…
Reference in a new issue